1. 程式人生 > >如何通過Html網頁呼叫本地安卓app?

如何通過Html網頁呼叫本地安卓app?

如何使用html網頁和本地app進行傳遞資料呢?經過研究,發現還是有方法的,總結了一下,大致有一下幾種方式

一、通過html頁面開啟Android本地的app

1、首先在編寫一個簡單的html頁面

複製程式碼
<html>

    <head>

        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    
        <title>Insert title here</title>

    </head>

    <
body> <a href="m://my.com/">開啟app</a><br/> </body> </html>
複製程式碼

2、在Android本地app的配置

複製程式碼
在AndroidManifest的清單檔案裡的intent-filte中加入如下元素:
 <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:host="my.com" android:scheme="m" /> </intent-filter>
複製程式碼

示例截圖如下:

image

然後使用“手機瀏覽器”或者“webview”的方式開啟這個本地的html網頁,點選“開啟APP”即可成功開啟本地的指定的app

二、如何通過這個方法獲取網頁帶過來的資料

只能開啟就沒什麼意思了,最重要的是,我們要傳遞資料,那麼怎麼去傳遞資料呢?

我們可以使用上述的方法,把一些資料傳給本地app,那麼首先我們更改一下網頁,程式碼修改後:

複製程式碼
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>Insert title here</title>
    </head>
    <body>
        <a href="m://my.com/?arg0=0&arg1=1">開啟app</a><br/>
    </body>
</html>
複製程式碼

(1).假如你是通過瀏覽器開啟這個網頁的,那麼獲取資料的方式為:

Uri uri = getIntent().getData();  String test1= uri.getQueryParameter("arg0");  String test2= uri.getQueryParameter("arg1");

(2)如果使用webview訪問該網頁,獲取資料的操作為:

複製程式碼
webView.setWebViewClient(new WebViewClient(){
  @Override
  public boolean shouldOverrideUrlLoading(WebView view, String url) {
      Uri uri=Uri.parse(url);
          if(uri.getScheme().equals("m")&&uri.getHost().equals("my.com")){
              String arg0=uri.getQueryParameter("arg0");
              String arg1=uri.getQueryParameter("arg1");
             
          }else{
              view.loadUrl(url);
          }
      return true;
  }
});
複製程式碼