8
A
답변
18
몇 가지 방법이 있지만 가장 쉬운 방법은 SharedPreferences 개체의 플래그를 확인하고 경고가 표시되면 설정하는 것입니다.
뭔가
같은public class MyActivity extends Activity {
public static final String PREFS_NAME = "MyPrefsFile";
@Override
protected void onCreate(Bundle state){
super.onCreate(state);
SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
boolean dialogShown = settings.getBoolean("dialogShown", false);
if (!dialogShown) {
// AlertDialog code here
SharedPreferences.Editor editor = settings.edit();
editor.putBoolean("dialogShown", true);
editor.commit();
}
}