android与原生的JS交互

package com.ada56.apps.taxi.ui.login;

import android.annotation.SuppressLint;

import android.app.Activity;

import android.content.Context;

import android.os.Bundle;

import android.view.View;

import android.webkit.JsResult;

import android.webkit.WebChromeClient;

import android.webkit.WebSettings;

import android.webkit.WebView;

import android.webkit.WebViewClient;

import android.widget.Toast;

import com.ada56.apps.taxi.passenger.R;

public class JSAndroidActivity extends Activity {

    private WebView myWebView = null;

    @SuppressLint("SetJavaScriptEnabled")

    @Override

    public void onCreate(Bundle savedInstanceState){

        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_jsdemo);

        myWebView = (WebView) findViewById(R.id.myWebView);

        WebSettings webSettings = myWebView.getSettings();// 得到设置属性的对象

        webSettings.setJavaScriptEnabled(true);// 使能JavaScript

        webSettings.setDefaultTextEncodingName("GBK");//支持中文,否则页面中中文显示乱码

        // 限制在WebView中打开网页,而不用默认浏览器

        myWebView.setWebViewClient(new WebViewClient());

        // 如果不设置这个,JS代码中的按钮会显示,但是按下去却不弹出对话框

        // Sets the chrome handler. This is an implementation of WebChromeClient

        // for use in handling JavaScript dialogs, favicons, titles, and the

        // progress. This will replace the current handler.

        myWebView.setWebChromeClient(new WebChromeClient() {

            @Override

            public boolean onJsAlert(WebView view, String url, String message, JsResult result) {

                return super.onJsAlert(view, url, message, result);

            }

        });

        // 用JavaScript调用Android函数:

        // 先建立桥梁类,将要调用的Android代码写入桥梁类的public函数

        // 绑定桥梁类和WebView中运行的JavaScript代码

        // 将一个对象起一个别名传入,在JS代码中用这个别名代替这个对象,可以调用这个对象的一些方法

        //myWebView.addJavascriptInterface(new WebAppInterface(this), "myInterfaceName");

        myWebView.addJavascriptInterface(new WebViewNative(this), "Native");

        //myWebView.loadUrl("file:///android_asset/sample.html");// 载入页面:本地html资源文件

        myWebView.loadUrl("http://192.168.211.61:8080/taxi/jsAndroid.html");

    }

    

    public void callJSMethod(View view){

    //用Android代码调用JavaScript函数:

        myWebView.loadUrl("javascript:myFunction('<<callJSMethod>>')");

        //这里实现的效果和在网页中点击第一个按钮的效果一致

    }

    /**

     * 自定义的Android代码和JavaScript代码之间的桥梁类

     */

    public class WebViewNative {

        Context mContext;

        /** Instantiate the interface and set the context */

        WebViewNative(Context c) {

            mContext = c;

        }

        /** Show a toast from the web page */

        public void showToast(String toast) {

            Toast.makeText(mContext, toast, Toast.LENGTH_LONG).show();

        }

    }

}

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:id="@+id/myRelativeLayout"

    android:layout_width="match_parent"

    android:layout_height="match_parent" >

    <TextView

        android:id="@+id/textView1"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:padding="40dp"

        android:text="@string/hello_world"

        tools:context=".WebJSActivity" />

    <Button

        android:id="@+id/button1"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_toRightOf="@id/textView1"

        android:onClick="callJSMethod"

        android:text="android_Button" />

    <WebView

        android:id="@+id/myWebView"

        android:layout_width="fill_parent"

        android:layout_height="fill_parent"

        android:layout_below="@id/textView1" />

</RelativeLayout>

===========================================================================================================================

<html>

<head>

<meta charset="UTF-8">

<!-- JavaScript脚本,主要包括了按钮要执行的函数,显示对话框等 -->

<script type="text/javascript">

    //JavaScript方法,弹出对话框显示信息

    function myFunction(msg){

        alert("myFunction is called, msg="+msg);

    }

    function onAlert()

    {

        console.log("onAlert method");//显示调试信息

        alert("This is a alert sample from html");

    }

    function onConfirm()

    {

        console.log("onConfirm method");

        var b = confirm("are you sure to login?");

        alert("your choice is " + b);

    }

    function onPrompt()

    {

        console.log("onPrompt method");

        var b = prompt("please input your password", "aaa");

        alert("your input is " + b);

    }

    //调用绑定的Java对象的方法,即调用Android代码显示对话框

    function showAndroidToast(toast)

    {

        console.log("showAndroidToast method");

        //myInterfaceName.showToast(toast);//注意此处的myInterfaceName要和外部传入的名字一致,大小写正确

        Native.showToast(toast);

    }

</script>

</head>

<body>

    

    <p>

        <!-- 前四个按钮调用JS函数 -->

        JavaScript函数调用 <br />

        <button onclick="myFunction()">点击这里!</button>

        <br /> 

        <input type="button" value="alert" onclick="onAlert()" /> <br />

        <input type="button" value="confirm" onclick="onConfirm()" /> <br />

        <input type="button" value="prompt" onclick="onPrompt()" /><br />

        <!-- 上面用了两种定义按钮的方式,效果一样的 -->

    </p>

    

    <p>

        <!-- 这个Say hello 按钮调用Android代码中的方法 -->

        用JavaScript按钮调用Android代码 <br /> 

        <input type="button"

            value="Say hello" onClick="showAndroidToast('Hello Android!')" />

    </p>

    <a href="http://www.google.com" />Google

    </a>

</body>

</html>

相关推荐