クリックすると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);
}
}