作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用“onCreateDialog”方法从 Activity 中打开一个警告对话框:
protected Dialog onCreateDialog(int id) {
Dialog dialog = null;
switch(id) {
case DIALOG_PASSWORD_VERIFICATION:
LayoutInflater factory = LayoutInflater.from(this);
final View passwordDialog = factory.inflate(R.layout.password, null);
AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.setTitle("Please enter your password");
alert.setView(passwordDialog);
alert.setCancelable(false);
alert.create();
alert.setPositiveButton("Ok", new PasswordDialogListenerOk(
passwordDialog, getApplicationContext()));
alert.setNegativeButton("Cancel", new PasswordDialogListenerOk(
passwordDialog, getApplicationContext()));
alert.show();
break;
default:
dialog = null;
}
return dialog;
}
一切都很好,很顺利,但我不知道我要回到我的 Activity 中去哪里。对话框消失了,但是对话框关闭后 Activity 中的返回点在哪里?
最佳答案
返回 Activity 并没有明确的“地点”。我想它确实会在某个时候转到 OnResume
,但是如果您只想在对话框关闭后做某事,您应该将该代码放入您的监听器中(在这种情况下,您已经称之为 PasswordDialogListener
)。如果您想将其用于特定用途,则应说明您要实现的目标。
关于安卓对话框 : Where do I return after dismissing the dialog?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9489721/
我是一名优秀的程序员,十分优秀!