在Android中第一次运行应用时创建自定义对话框

时间:2014-08-26 14:55:32

标签: android customdialog

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方法创建自定义对话框。在我想要在另一个类中只显示简单的显示方法的对话框之后。

哪种方式最适合它?

感谢。

1 个答案:

答案 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);
}