宝剑锋从磨砺出,梅花香自苦寒来。这篇文章主要讲述网页打开Android APP相关的知识,希望能为你提供帮助。
原理解析在android平台而言,URI主要分三个部分:
scheme,authority,path
其中authority又分为host和port。格式如下:
<
scheme>
://<
host>
:<
port>
[<
path>
|<
pathPrefix>
|<
pathPattern>
]
对应的manifest中的
<
data>
配置如下:<
data android:host=""
android:mimeType=""
android:path=""
android:pathPattern=""
android:pathPrefix=""
android:port=""
android:scheme=""
android:ssp=""
android:sspPattern=""
android:sspPrefix=""/>
其中scheme为必须参数,若没有指定,那其它的属性均无效!
如果host没有指定,那么port,path,pathPrefix,pathPattern均无效!
我们最常用的是
scheme
,host
,port
,path
这四个配置。实现方法首先在
AndroidManifest
中的MainActivity
中添加一个<
intent-filter>
:<
intent-filter>
<
action android:name="android.intent.action.VIEW" />
<
category android:name="android.intent.category.BROWSABLE" />
<
category android:name="android.intent.category.DEFAULT"/>
<
data android:scheme="protocol" android:host="domain" android:pathPrefix="/link" />
<
/intent-filter>
然后在你的网页中添加一个链接:
<
a href="protocol://domain/link>
打开app<
/a>
最后,点击这个a链接,如果app成功弹出,那么恭喜你,你成功了。
拓展光打开app可能还不够,有时我们要传递数据,那么怎么去传递数据呢?
我们可以使用上面的方法,把一些数据传给app,那么先修改一下链接:
<
a href="protocol://domain/link?id=123>
打开app并传递id<
/a>
然后在app上的MainActivity中的onCreate方法中添加代码:
Uri uri = getIntent().getData();
String id= uri.getQueryParameter("id");
这样就可以传递数据啦!
如果用的是应用内的webview,获取数据的操作为:
webView.setWebViewClient(new WebViewClient(){
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
Uri uri=Uri.parse(url);
if(uri.getScheme().equals("protocol")&
&
uri.getHost().equals("domain")){
String id = uri.getQueryParameter("id");
}else{
view.loadUrl(url);
}
return true;
}
});
API
getScheme();
//获得Scheme名称 getDataString();
//获得Uri全部路径 getHost();
//获得host
【网页打开Android APP】附上uri的官方api链接
https://developer.android.com...
欢迎评论
推荐阅读
- Error parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource com/mapp
- appium多线程
- adb 连接 Android 手机的两种方式
- Spring执行ApplicationEvent事件顺序ServletWebServerInitializedEvent
- Golang 版本 支付宝支付SDK app支付接口2.0
- 作为一名Android开发者,为什么在日常我们的学习效率越来越低,越来越迷茫
- win7桌面图标不见了怎样办,本文教您处理win7桌面
- win7怎样进入bios,本文教您win7怎样进入bios
- 显示器闪黑屏,本文教您如何恢复运用