0

私は自分のアプリでアラートを作成しました。メインのアクティビティでは完璧ですが、3回警告した後、消えてほしいです。メインのアクティビティに戻るたびに表示されるわけではありません。

これは私のアラートコードです

        new AlertDialog.Builder( this )
    .setTitle( "Browser feature" )
    .setMessage( "The browser feature is currently beta, so it won't work perfectly. To get an image from the internet, click on the browser then google your image, and save it then import it using the gallery option." )
    .setPositiveButton( "Continue", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int which) {
            Log.d( "AlertDialog", "Positive" );
        }
    })
    .show();
4

1 に答える 1

1

その人がSharedPreferenceとして警告された回数を保存します。カウンターを毎回更新し、カウントが3未満の場合にのみ発行します。

http://developer.android.com/reference/android/content/SharedPreferences.html

共有設定は、このタイプのグローバル情報を保持するのに最適な場所です。

于 2012-07-31T19:08:41.920 に答える