1

クリックするとAndroidアクティビティクラスに移動するHTMLボタンを作成することは可能ですか。アクティビティを別のアクティビティに表示するときにインテントを使用するのと同じです

誰かが考えを持っていますか?

私のJsIntefaceクラスはこれに変わります

 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); 
        mContext.startActivity(mainIntent); 

    }

}
4

1 に答える 1

1
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) {
    Toast.makeText(mContext, toast, Toast.LENGTH_SHORT).show();
}
}

 WebView webView = (WebView) findViewById(R.id.webview);
 webView.addJavascriptInterface(new JavaScriptInterface(this), "Android");

Javaスクリプトで

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

  <script type="text/javascript">
    function showAndroidToast(toast) {
    Android.showToast(toast);
   }
  </script>
于 2012-08-30T06:46:55.993 に答える