Android webview加載H5方法詳細介紹

這篇文章主要闡述3個知識點

  • 安卓APP 怎麼用webview加載H5
  • H5怎麼調用安卓定義的方法
  • 安卓怎麼調用H5定義的方法

1,安卓APP 怎麼用webview加載H5

安卓端定義個webview xml 頁面,代碼如下所示:

<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/web_view_id"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
</WebView>

之後再對webview 實例進行設置,用loadUrl 方法加載H5 路徑即可。代碼如下:

        webView = (WebView) view.findViewById(R.id.web_view_id);
        WebSettings settings = webView.getSettings();
        settings.setJavaScriptEnabled(true);
        WebChromeClient webChromeClient = new WebChromeClient();
        webView.setWebChromeClient(webChromeClient);
        settings.setUseWideViewPort(true);
        settings.setLoadWithOverviewMode(true);
        settings.setBuiltInZoomControls(true);
        settings.setSupportZoom(true);
        settings.setDefaultTextEncodingName("UTF-8");
        settings.setJavaScriptCanOpenWindowsAutomatically(true);
        //String _url = "http://xxx.xxx.xxx/link/index.html#/home/index"; //服務器地址
        String _url = "file:android_asset/dist/index.html#/home/index"; //本地地址
        webView.loadUrl(_url);

不出意外的話會看到加載的H5頁面瞭。

2,H5怎麼調用安卓定義的方法

首先定義一個類,寫上供H5調用的方法,註意這個方法要用@JavascriptInterface修飾,代碼如下所示:

public class Mine {
    private Context context;
    public Mine(Context _context){
        this.context = _context;
    }
    @JavascriptInterface
    public  void loginOut(){
        ((MainActivity) context).loginOut();
    }
}

然後註冊這個類,如下所示:

webView.addJavascriptInterface(new Mine(this.getActivity()), "mineInterface");

這樣安卓端就寫好瞭。接下來就是H5端調用瞭。

window.mineInterface.loginOut();

H5端直接這麼調用就可以瞭。

如果js想傳遞json對象參數給安卓端怎麼辦,不要直接寫json對象,要轉換為json字符串,代碼如下:

          window.mineInterface.loginOutTest(JSON.stringify({
            title: "iot",
            name: "iot"
          }));

安卓端接收如下:

    @JavascriptInterface
    public  void loginOutTest(String params){
        Log.d(AppYunlanLink.TAG, "test: " + params);
    }

3,安卓怎麼調用H5定義的方法

H5 我是用的vue 框架,方法寫在瞭頁面內,如下所示:

  created() {    
    window.setUserInfo = this.setUserInfo; //android app 會調用此方法
  },
  methods: {
    setUserInfo(userInfo) {
      const _userInfo = JSON.parse(userInfo);      
      this.userName = _userInfo.username;      
      this.avatar = _userInfo.avatar;
    }
  },

註意方法一定要掛載到window對象上。安卓端怎麼調用呢?

    //調用html5 頁面中的方法,帶JSONObject類型參數
    public void loadWebViewFuncWithJSON(String funcName, JSONObject value) {
        webView.post(new Runnable() {
            @Override
            public void run() {
                String _url = "javascript:" + funcName + "('" + value + "')";
                Log.d(AppYunlanLink.TAG, "value is: " + value);
                webView.loadUrl(_url);
            }
        });
    }
    fg4.loadWebViewFuncWithJSON("setUserInfo", info);

這是帶有參數的調用,安卓端是JSONObject類型的,H5端接收的是json字符串。不帶參數的調用更簡單瞭,如下:

    //調用html5 頁面中的方法
    public void loadWebViewFunc(String funcName) {
        String _url = "javascript:" + funcName + "()";
        webView.loadUrl(_url);
    }

到此這篇關於Android webview加載H5方法詳細介紹的文章就介紹到這瞭,更多相關Android加載H5內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: