您现在的位置是:网站首页> Android

App 如何注册自己的自定义URL Scheme

  • Android
  • 2024-12-15
  • 344人已阅读
摘要

App 如何注册自己的自定义URL Scheme


在 iOS 中注册自定义 URL Scheme

步骤一:配置项目信息

打开 Xcode 项目,在项目导航器中选择你的项目(通常是蓝色图标那一项),然后选择你的应用目标。

选择 “Info” 选项卡,在 “URL Types” 部分添加一个新条目。

在 “URL Schemes” 字段中输入你想要的自定义 URL Scheme,例如 “myapp”。这个 Scheme 应该是唯一的,避免与其他应用冲突。一般建议使用反向域名格式,如 “com.example.myapp”,这样可以更好地保证唯一性。

步骤二:处理 URL 请求(可选)

在 AppDelegate.swift(或 Objective - C 中的 AppDelegate.m)文件中,你可以实现application(_:open:options:)方法(iOS 9 及以上)来处理通过自定义 URL Scheme 打开应用的请求。例如:


swift

func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {

    // 在这里处理URL请求,比如解析URL中的参数等

    if let components = URLComponents(url: url, resolvingAgainstBaseURL: false) {

        if components.scheme == "myapp" {

            // 根据你的业务逻辑处理具体的路径和参数

            if let path = components.path {

                if path == "/specific - page" {

                    // 跳转到应用内特定页面等操作

                    let storyboard = UIStoryboard(name: "Main", bundle: nil)

                    let viewController = storyboard.instantiateViewController(withIdentifier: "SpecificViewController")

                    self.window?.rootViewController?.present(viewController, animated: true, completion: nil)

                }

            }

        }

    }

    return true

}


plaintext

     - 在Objective - C中,类似的代码如下:

     ```objc

     - (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {

         NSURLComponents *components = [[NSURLComponents alloc] initWithURL:url resolvingAgainstBaseURL:false];

         if ([components.scheme isEqualToString:@"myapp"]) {

             NSString *path = components.path;

             if ([path isEqualToString:@"/specific - page"]) {

                 UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];

                 UIViewController *viewController = [storyboard instantiateViewControllerWithIdentifier:@"SpecificViewController"];

                 [(UIViewController *)self.window.rootViewController presentViewController:viewController animated:YES completion:nil];

             }

         }

         return YES;

     }



在 Android 中注册自定义 URL Scheme

步骤一:在 AndroidManifest.xml 中配置

打开AndroidManifest.xml文件,在<activity>标签内添加一个<intent - filter>标签来处理自定义 URL Scheme。例如:

xml

<activity android:name=".MainActivity">

    <intent - filter>

        <action android:name="android.intent.action.VIEW" />

        <category android:name="android.intent.category.DEFAULT" />

        <category android:name="android.intent.category.BROWSABLE" />

        <data android:scheme="myapp" />

    </intent - filter>

</activity>


plaintext

     - 这里定义了一个活动(Activity)来处理自定义URL Scheme为“myapp”的请求。`<action>`标签指定了意图(Intent)的动作是“VIEW”,`<category>`标签中的“DEFAULT”和“BROWSABLE”是为了让这个活动能够从浏览器等外部源接收意图。

   - **步骤二:处理URL请求(可选)**

     - 在对应的Activity(如上述的`MainActivity`)中,可以通过`getIntent()`方法获取启动该活动的意图,并从中获取URL信息进行处理。例如:

     ```java

     @Override

     protected void onCreate(Bundle savedInstanceState) {

         super.onCreate(savedInstanceState);

         setContentView(R.layout.activity_main);

         Intent intent = getIntent();

         Uri data = intent.getData();

         if (data!= null) {

             if ("myapp".equals(data.getScheme())) {

                 // 根据业务逻辑处理路径和参数

                 String path = data.getPath();

                 if ("/specific - page".equals(path)) {

                     // 跳转到应用内特定页面等操作,这里假设你有一个名为SpecificActivity的活动

                     Intent specificIntent = new Intent(this, SpecificActivity.class);

                     startActivity(specificIntent);

                 }

             }

         }

     }

在 Kotlin 中,类似的代码如下:

kotlin

override fun onCreate(savedInstanceState: Bundle?) {

    super.onCreate(savedInstanceState)

    setContentView(R.layout.activity_main)

    val intent = intent

    val data = intent.data

    if (data!= null) {

        if ("myapp".equals(data.scheme)) {

            val path = data.path

            if ("/specific - page".equals(path)) {

                val specificIntent = Intent(this, SpecificActivity::class.java)

                startActivity(specificIntent)

            }

        }

    }

}







Top