如何理解这个错误

时间:2013-02-04 07:07:55

标签: android

我发布了谷歌播放我的应用程序。 Google告诉我,我的应用程序在被用户使用时崩溃了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

错误似乎出现在onAesume方法内的CoverActivity类中。正如您所看到的,我在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();
            }
        }
  }

2 个答案:

答案 0 :(得分: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();
        }
    }
}

答案 1 :(得分:0)

根据我们与您的问题相关的讨论,您在启动活动中保留final static boolean samsung;的方法是致命和错误的。这不适用于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的方式访问它以查找其应用程序上下文。