我已實施「評價我的應用程序」功能。但是我想要僅在用戶點擊exit
按鈕時才顯示提示評級。當用戶點擊退出時(退出應用程序之前)顯示「評價我的應用程序」警報
代碼AppRater是http://www.androidsnippets.com/prompt-engaged-users-to-rate-your-app-in-the-android-market-appirater
代碼退出按鈕:
case R.id.exit:
Log.i(DEBUG_TAG, "Exiting from application");
AppRater.app_launched(this); //Display alert for app rating
Intent exitIntent = new Intent(Intent.ACTION_MAIN);
exitIntent.addCategory(Intent.CATEGORY_HOME);
exitIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(exitIntent);
this.finish();
break;
現在有了這個代碼,它顯示警報只是第二,作爲當前活動得到成品。
我只想在用戶點擊警報框中的任何按鈕時才結束當前活動。