gpt4 book ai didi

安卓对话框 : Where do I return after dismissing the dialog?

转载 作者:行者123 更新时间:2023-11-30 04:19:31 25 4
gpt4 key购买 nike

我正在使用“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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com