0

Google Play でアプリを公開しました。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

エラーは onResume メソッド内の 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();
            }
        }
  }
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;、開始アクティビティを維持するというあなたのアプローチは致命的で間違っています。これは Android では機能しません。

静的変数を使わないほうがいい理由もありますが、環境面のスタートアップ解析などにはいいと思います。

Android でこれを行う正しい方法は、アプリケーション クラスを派生させ、そこで分析を実行し、変数に格納することです。典型的な設計上の考慮事項が適用されますが、これはあなたに役立つ基本的なスキームです。

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。ただし、非静的にし、アクティビティの手段を介してアクセスして、そのアプリケーション コンテキストを見つけることもできます。

于 2013-02-05T07:49:35.500 に答える