VM在启动新活动时中止

时间:2013-01-15 07:38:20

标签: android android-activity android-webview

我使用how to get back to android activity page from webview

的以下链接

该解决方案仅适用于显示Toast消息。

但是我面临的问题是在尝试在toast消息后获取VM中止错误消息后启动新活动时。

public class JavaScriptInterface{
    Context mContext;

    /** Instantiate the interface and set the context */
    JavaScriptInterface(Context c) {
        mContext = c;
    }

    /** Show a toast from the web page */
    @JavascriptInterface
    public void showToast(String toast) {
        Toast.makeText(mContext, toast, Toast.LENGTH_SHORT).show();
        menuScreenActivity  menu=new menuScreenActivity ();
        menu.logout();//here i try to call the logut method
    }
}

在menuScreenActivity Activity我创建的方法名为logout

menuScreenActivity中的方法

public void logout(){
      Intent myIntent= new Intent(menuScreenActivity.this,LoginActivity.class);
      startActivity(myIntent);
    }

我的日志猫说

 JNI WARNING: jarray 0x405a2478 points to non-array object (Ljava/lang/String;)
 "WebViewCoreThread" prio=5 tid=9 NATIVE
  | group="main" sCount=0 dsCount=0 obj=0x4058d718 self=0x1fecb0
  | sysTid=746 nice=0 sched=0/0 cgrp=default handle=5148120
   | schedstat=( 23519331303 11309830622 1216 )
at android.webkit.WebViewCore.nativeTouchUp(Native Method)
at android.webkit.WebViewCore.nativeTouchUp(Native Method)
at android.webkit.WebViewCore.access$3300(WebViewCore.java:53)
at android.webkit.WebViewCore$EventHub$1.handleMessage(WebViewCore.java:1158)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:123)
at android.webkit.WebViewCore$WebCoreThread.run(WebViewCore.java:629)
at java.lang.Thread.run(Thread.java:1019)
VM aborting

请让我知道如何解决这个问题?

3 个答案:

答案 0 :(得分:0)

您在Intent方法中创建的logout()被称为intent并且您尝试启动myIntent Intent这是正常的吗?

答案 1 :(得分:0)

menuScreenActivity menu=new menuScreenActivity ();几乎肯定是错的。您永远不应该使用Activity创建new。看起来您只是为了让Context传递给Intent。您已经有一个Context保存了对引用的引用,因此您可以使用它来启动intent,假设您传递了一个Activity上下文。

/** Show a toast from the web page */
    @JavascriptInterface
    public void showToast(String toast) {
        Toast.makeText(mContext, toast, Toast.LENGTH_SHORT).show();
        Intent myIntent= new Intent(mContext,LoginActivity.class);
        mContext.startActivity(myIntent);
    }  

答案 2 :(得分:0)

您可以在menuScreenActivity中将logout方法更改为static,

public static logout(Context context){
  Intent myIntent= new Intent(context,LoginActivity.class);
  context.startActivity(myIntent);
}

然后通过

调用JavaScriptInterface中的静态方法
menuScreenActivity.startActivity(mContext);