0

我已经在 google play 我的应用程序上发布了。谷歌告诉我,我的应用程序在用户使用时崩溃了 2 次。我测试了我的应用程序很多次,但我从来没有得到那个错误,而且我不知道如何模拟那个错误。

java.lang.RuntimeException: Unable to resume activity {com.mdp.slotmachine/com.mdp.slotmachine.CoverActivity}: java.lang.NullPointerException
at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2444)
at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2472)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1986)
at android.app.ActivityThread.access$600(ActivityThread.java:123)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1147)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4429)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:795)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:562)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at android.app.ContextImpl.startService(ContextImpl.java:1088)
at android.content.ContextWrapper.startService(ContextWrapper.java:359)
at com.mdp.slotmachine.CoverActivity.onResume(Unknown Source)
at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1154)
at android.app.Activity.performResume(Activity.java:4539)
at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2434)
... 12 more

错误似乎在 CoverActivity 类中,在 onResume 方法中。如您所见,我在 onResume 方法中没有做任何事情。

  @Override
  protected void onResume() {
  super.onPause();

  //check if i'm publishing the app on samsung store
        if(MainActivity.samsung){   

          // here i check if my app was properly downloaded from samsung store by using Zirconia.
         // BUT I NEVER GET HERE; BECAUSE THE PREVIUOS VARIABLE (MainActivity.samsung) IS ALWAYS FALSE.
            if(!MainActivity.licensaSamsung){
                    finish();
            }
        }
  }
4

2 回答 2

0

而不是调用super.onPause();使用super.onResume();

 @Override
protected void onResume() {
    //super.onPause();check if i'm publishing the app on samsung store
    super.onResume();// call this method
if(MainActivity.samsung){    
            // here i check if my app was properly downloaded from samsung store by using Zirconia. BUT I NEVER GET HERE; BECAUSE THE PREVIUOS VARIABLE (MainActivity.samsung) IS ALWAYS FALSE.
        if(!MainActivity.licensaSamsung){
            finish();
        }
    }
}
于 2013-02-04T07:09:34.673 回答
0

根据我们与您的问题相关的讨论,您final static boolean samsung;在 start Activity 中保留 a 的方法是致命且错误的。这在 Android 上不起作用。

尽管有一些理由不应该使用静态变量,但我认为这对于环境方面的启动分析等目的来说是可以的。

在 Android 上执行此操作的正确方法是派生一个 Application 类,在那里执行分析并将其存储在其中的变量中。典型的设计注意事项适用,但这里有一个可能适合您的基本方案。

public final class MyApplication extends Application {
    public static boolean isSamsung;
    @Override
    // Application.onCreate() is called on the main thread before your first Activity
    public void onCreate() {
        isSamsung = myFancyComputation();
    }
 }

只要您的应用程序没有被杀死或终止,MyApplication 的实例就可以保证存活。请注意,这可能比您想象的更早或更晚发生;在尝试依赖它们之前,请尝试完全了解应用程序和活动生命周期。

使用这种static singleton方法,访问起来非常容易Application.isSamsung;但是,您也可以将其设为非静态并通过 Activity 的方式访问它以查找其应用程序上下文。

于 2013-02-05T07:49:35.500 回答