gpt4 book ai didi

android - 如何从 AlertDialog 获取结果?

转载 作者:IT老高 更新时间:2023-10-28 22:25:53 25 4
gpt4 key购买 nike

我正在使用 AlertDialog.Builder 显示一个对话框以提示用户输入密码,然后我想将该密码保存在首选项中,但是我不知道如何从警报对话框中获取结果输入法。

这基本上是我想做的事情:

    String result;
AlertDialog.Builder b = new AlertDialog.Builder(this);
b.setTitle("Please enter a password");
final EditText input = new EditText(this);
b.setView(input);
b.setPositiveButton("OK", new DialogInterface.OnClickListener()
{
@Override
public void onClick(DialogInterface dialog, int whichButton)
{
//I get a compile error here, it wants result to be final.
result = input.getText().toString();
}
});
b.setNegativeButton("CANCEL", null);
b.create().show();

但是,我愿意做诸如 showDialog(int); 之类的事情,然后使用 onCreateDialog(int) 方法并以某种方式设置结果并以某种方式接收它其他方法,但我不知道如何进行最后一部分。

最佳答案

public class MyActivity extends Activity {
private String result;

void showDialog() {
AlertDialog.Builder b = new AlertDialog.Builder(this);
b.setTitle("Please enter a password");
final EditText input = new EditText(this);
b.setView(input);
b.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int whichButton) {
result = input.getText().toString();
}
});
b.setNegativeButton("CANCEL", null);
b.show();
}
}

关于android - 如何从 AlertDialog 获取结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5953644/

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