如果用户已经按下该按钮,我需要停止显示 AlertDialog(在 OnCreate 中)。如果已单击肯定按钮,我需要禁用 AlertDialog。
AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this);
dlgAlert.setMessage(getString(R.string.dialogMSG));
dlgAlert.setTitle("App Support Checker");
dlgAlert.setPositiveButton(R.string.yesdev,
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});
dlgAlert.setCancelable(false);
dlgAlert.create().show();