当前位置:   article > 正文

Android中App Links的使用。_android app links

android app links

App Links我们可以 As上进行配置。Tools →App Links Assistant .在这个目录下进行配置

上图操作完会在你对应的activity中生成一个

会在你的清单文件中生成这样的一个intent-filter 

 

部署assetlinks.json

如上,我们的host为你项目的域名,那么我们就需将assetlinks.json放到.

我们可以在对应的activity下面:

Uri uri = getIntent().getData();
        //Uri 规则: scheme://host+path?query
        //这里以“https://yaoyi.ypzdw.com/article/413?type=url&from=web”为例
        if (null != uri) {
            String scheme = uri.getScheme(); //https , "://" 这个前面的就表示scheme
            String host = uri.getHost(); //yaoyi.ypzdw.com
            String path = uri.getPath(); //article/413
            String query = uri.getQuery(); //type=mobile&from=web
//        String type = uri.getQueryParameter("type"); //url
            Log.e("fang==", "scheme = " + scheme + ", host = " + host + ", path = " + path + ", query = " + query);
            if (null != path) {
                CouponActivity.start(MainActivity.this);
            }
        }

通过拿到跳转的链接传递过来的参数做一些逻辑操作等等

后面可以通过adb命令进行验证:adb shell am start -W -a android.intent.action.VIEW -d "https://dmresource.dinggou.zjcem.net/ant_design/index.html#/",也可以通过As 来进行自动测试。也在App Links Assistant下面。

注意:其中这些在网页中是打不开我们的app的。国内版手机无法在浏览器唤起App,最好使用国外的手机。我么可以通过短信的方式打开来测试的

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/296779
推荐阅读
相关标签
  

闽ICP备14008679号