关闭有趣广告后应用停止,为什么?

时间:2018-06-13 05:30:40

标签: android-studio sharedpreferences

我有两项活动," Main"并且"扫描后#34;为我的QR扫描仪应用程序。在应用程序(扫描活动后)在共享首选项的帮助下至少打开三次后,我已经创建了应用程序来显示感兴趣的广告。经过三次扫描后,会显示AD,但是当我关闭该AD时,app会停止,请解决任何问题。

我的AfterCcan.Activity的onCreate()

    prefs = getPreferences(Context.MODE_PRIVATE);
    editor = prefs.edit();
    totalCount = prefs.getInt("counter", 0);
    Log.d(TAG,"totalCount[Before ++]="+totalCount);

    totalCount++;
    editor.putInt("counter", totalCount);
    editor.apply();

AfterScan.Activity的onStop()

    public void onStop(){
    Log.d(TAG,"totalCount[String/onStop()]="+totalCount);
    if (totalCount>2) {
        Log.d(TAG,"i am inside if()");
        editor.putInt("counter",0);
        editor.apply();
        mInterstitial.show();
    }
    super.onStop();

}

0 个答案:

没有答案