活动未通过super.onresume异常调用

时间:2018-10-30 16:59:24

标签: xamarin xamarin.forms xamarin.android android-lifecycle

在我的xamarin表单应用程序中,崩溃是由App Center crashlytics造成的,如下所示:

android.app.Activity.performResume

Activity.java - line 7138
android.util.SuperNotCalledException: Activity 
{com.tcrsoftware.androidx/md54f7a5b50cfc6839da41f22f8e0e378f9.MainActivity} 
did not call through to super.onResume()
android.app.Activity.performResume Activity.java:7138
android.app.ActivityThread.performResumeActivity ActivityThread.java:3850
android.app.ActivityThread.handleResumeActivity ActivityThread.java:3914
android.app.ActivityThread$H.handleMessage ActivityThread.java:1709
android.os.Handler.dispatchMessage Handler.java:102
android.os.Looper.loop Looper.java:154
android.app.ActivityThread.main ActivityThread.java:6823
java.lang.reflect.Method.invoke Method.java
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run 
ZygoteInit.java:1557
com.android.internal.os.ZygoteInit.main ZygoteInit.java:1445

我只是在共享库项目中使用onResume(),例如:

public partial class App : Application
{
protected override void OnResume()
    {
        Utility.LogMessage("OnResume: ", LogMessageType.info);
    }
}

我没有在Android项目的onResume()类中实现/使用MainActivity

此崩溃发生的位置和原因?还会在用户尝试打开应用程序时导致应用程序连续崩溃吗?

有任何更新吗?

0 个答案:

没有答案