1

我想从 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 ...

4

1 回答 1

0

尝试使用 WebView 中的 Java 代码。例如看这里:http ://android-er.blogspot.com/2011/10/call-javascript-inside-webview-from.html

于 2012-10-06T13:41:22.560 回答