是否可以制作一个 html 按钮,当我单击时,它将转到我的 android 活动类。就像在我查看 Activity 到另一个 Activity 时使用 Intent
有人有想法吗?
我的 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);
}
}