如何通過Html網頁調用本地安卓app

來源:互聯網
上載者:User

標籤:安卓

如何使用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>

樣本如下:

 

然後使用“手機瀏覽器”或者“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;  }});
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.