原理解析
在Android平臺而言,URI主要分三個(gè)部分:
scheme,authority,path
其中authority又分為host和port杂瘸。格式如下:
<scheme>://<host>:<port>[<path>|<pathPrefix>|<pathPattern>]
對應(yīng)的manifest中的<data>
配置如下:
<data android:host=""
android:mimeType=""
android:path=""
android:pathPattern=""
android:pathPrefix=""
android:port=""
android:scheme=""
android:ssp=""
android:sspPattern=""
android:sspPrefix=""/>
其中scheme為必須參數(shù),若沒有指定然想,那其它的屬性均無效!
如果host沒有指定,那么port,path,pathPrefix,pathPattern均無效!
我們最常用的是scheme
,host
,port
,path
這四個(gè)配置盒卸。
實(shí)現(xiàn)方法
首先在AndroidManifest
中的MainActivity
中添加一個(gè)<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>
然后在你的網(wǎng)頁中添加一個(gè)鏈接:
<a href="protocol://domain/link>打開app</a>
最后宽气,點(diǎn)擊這個(gè)a鏈接,如果app成功彈出掩蛤,那么恭喜你,你成功了陈肛。
拓展
光打開app可能還不夠盏档,有時(shí)我們要傳遞數(shù)據(jù),那么怎么去傳遞數(shù)據(jù)呢燥爷?
我們可以使用上面的方法,把一些數(shù)據(jù)傳給app懦窘,那么先修改一下鏈接:
<a href="protocol://domain/link?id=123>打開app并傳遞id</a>
然后在app上的MainActivity中的onCreate方法中添加代碼:
Uri uri = getIntent().getData();
String id= uri.getQueryParameter("id");
這樣就可以傳遞數(shù)據(jù)啦!
如果用的是應(yīng)用內(nèi)的webview,獲取數(shù)據(jù)的操作為:
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
附上uri的官方api鏈接
https://developer.android.com/reference/android/net/Uri.html