1

我正在使用此代码使用 HTML 按钮调用 Android Activity。但这对我不起作用。当我从我的 html 页面单击按钮时,我只想调用我的 Android 活动“echos.class”。

我的 JavaScriptInterface 类

public class JavaScriptInterface {
    Context mContext;

    /** Instantiate the interface and set the context */
    JavaScriptInterface(Context c) {
        mContext = c;
    }


    /** Show a toast from the web page */
    public void showToast(String toast) {
        Intent mainIntent = new Intent(mContext, echos.class); 
        JavaScriptInterface.this.startActivity(mainIntent); 


    }


    private void startActivity(Intent mainIntent) {
        // TODO Auto-generated method stub

    }
}

我的 webview 课

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        WebView myWebView = (WebView) findViewById(R.id.web1);
        WebSettings webSettings = myWebView.getSettings();
        webSettings.setJavaScriptEnabled(true);
        myWebView.addJavascriptInterface(new JavaScriptInterface(this), "Android");
        myWebView.loadUrl("file:///android_asset/www/index.html");

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }

}

我的html页面

<html>
<head>

</head>
<body>
    <input type="button" value="Say hello" onClick="showAndroidToast('Hello Android!')" />

    <script type="text/javascript">
    function showAndroidToast(toast) {
        Android.showToast(toast);
    }
</script>
</body>
</html>
4

1 回答 1

2

改变

JavaScriptInterface.this.startActivity(mainIntent); 

 mContext.startActivity(mainIntent); 

因为 JavaScriptInterface 不是一个活动

于 2012-08-30T07:17:43.810 回答