Android jsインタラクションとHtml起動App

5344 ワード

最近のプロジェクトはちょうど内部HTMLページから元のページにジャンプする機能とhtmlコード起動アプリページの機能があります.
まずプロジェクトで使うjsインタラクションについて説明します.
and roidでJSを調達する方法
WebView直接jsをロードする方法がいいです.コードは以下の通りです.
WebView.loadUrl("javascript:function(arg)")
html Androidの原生方法を呼び出します.
//      
WebView.addJavascriptInterface(Object object,String name)
Objcet対象は自分で作成した対象です.全体コードは以下の通りです.
public class AndroidJs{

  @JavascriptInterface
   public void test(){}

}

//webview code
WebView.addJavascriptInterface(new AndroidJs(),“AndroidJs” )

//html code
window.AndroidJs.test()
外部HTML起動APPページ
Schemeソリューションを使ってAndroid Manifest.xmlファイルに対応するページタグを添付します.
<activity android:name="...">
<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="hostName"
        android:path="path"
        android:scheme="schemeName" />
intent-filter>
activity>
Android Developタグ公式文書
Htmlコードの呼び出しは以下の通りです.
<a href = "schemeName://hostName/path">
//       http   get    
<a href = "schemeName://hostName/path?id=1&name=mark">
パラメータ付きの呼び出しはActivityでの取得方式です.
String action = getIntent().getAction();
if(!TextUtils.isEmpty(action)&&Intent.ACTION_VIEW.equal(action)){
Uri uri = getIntent().getData();
if(uri != null){
    String id = uri.getQueryParameter("id");
    String name = uri.getQueryParameter("name");
}
}
カスタムWebView処理schemeフォーマットリンク
public void loadUrl(String url){

  if(isSchemeUrl(url)){
    Intent intent = new Intent();
    intent.setData(Uri.parse(url));
    startActivity(intent);
  }

}

private boolean isSchemeUrl(String url) {
    if (TextUtils.isEmpty(url))
        return false;
    String[] strs = url.split("://");
    if (strs.length > 1) {
        String host = strs[0];
        if (host.equalsIgnoreCase("http") || host.equalsIgnoreCase("https"))
            return false;
        else
            return true;
    } else return false;
}
一つは私がAndroid JSと相互作用してアプリを起動する時の心得です.もし問題があれば、メッセージをください.