我已经实现了“评价我的应用程序”功能。但是我只想在用户单击按钮时才显示询问评分的警报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;
现在使用此代码,它会在当前活动完成时显示警报一秒钟。
我只想在用户单击警报框中的任何按钮时完成当前活动。