MainActivity Class,退出按钮点击事件:
public void onClick(View v) {
CustomDialog cd = new CustomDialog();
dialog = new Dialog(this);
cd.runConfirmationDialog(dialog, R.layout.custommessage,
R.id.d_tittle, "Exit", R.id.d_text, "Close Application",
R.id.btn_no, R.id.btn_yes, this);
}
CustomDialog类:
public class CustomDialog extends Activity {
void runConfirmationDialog(final Dialog dialog, int customLayoutID,int titleID, String title, int messageID, String message, int buttonCancelID,
int buttonOkeyID, final CustomDialogMethods main) {
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(customLayoutID);
}
void show(){
}
现在,我希望在应用程序第一次运行时使用runConfirmationDialog方法创建自定义对话框。在我想要在另一个类中只显示简单的显示方法的对话框之后。
哪种方式最适合它?
感谢。
答案 0 :(得分:0)
我认为最好的方法是在SharedPreferences上保存一个布尔值,指示对话框是否已显示:
public static void setFirstRunDialogShown(Context context, boolean value) {
Editor editor = context.getSharedPreferences(SETTINGS_NAME, Context.MODE_PRIVATE).edit();
editor.putBoolean(DIALOG_SHOWN, value);
editor.apply();
}
public static boolean isFirstRunDialogShown(Context context) {
return context.getSharedPreferences(SETTINGS_NAME, Context.MODE_PRIVATE).getBoolean(DIALOG_SHOWN, false);
}