我想从 webview 调用一个活动
该应用程序崩溃了......但它可以作为一个没有 webview 的其他人的活动
我错过了什么?
谢谢你。
公共类 AndroidInterface 扩展 Activity{ 上下文 mContext;
AndroidInterface(Context c) {
mContext = c;
}
public void newactivity(){
Intent intent = new Intent(mContext, App2Activity.class);
startActivity(intent);
}
public void showToast(String toast) {
Toast.makeText(mContext, toast, Toast.LENGTH_LONG).show();
}
}
通过javascript我只能叫toast而不是activiy ...