1

このコードを使用して、HTML ボタンを使用して Android アクティビティを呼び出しています。しかし、それは私にとってはうまくいきません。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

    }
}

私のウェブビュークラス

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 に答える