私は自分のアプリでアラートを作成しました。メインのアクティビティでは完璧ですが、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();