从Webview调用新活动

时间:2012-10-06 13:30:52

标签: android-intent

我想通过网络视图调用活动

应用程序崩溃......但是它可以在没有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我只能叫吐司而不是活动...

1 个答案:

答案 0 :(得分:0)

尝试使用WebView中的Java代码。例如,请参见此处:http://android-er.blogspot.com/2011/10/call-javascript-inside-webview-from.html