赞
踩
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,最好使用国外的手机。我么可以通过短信的方式打开来测试的
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。