gpt4 book ai didi

android - 使用警告对话框编辑文本

转载 作者:行者123 更新时间:2023-11-29 15:31:21 25 4
gpt4 key购买 nike

我是 android 开发的新手,我想为编辑文本字段显示一个警告对话框。用户应该输入从 10kg 到 99kg 的体重,只有当他输入超过 2 位数字时才会出现警告对话框,并且如果我们按下测量按钮也没有输入重量,它应该显示警告对话框。请有人帮助我编写示例代码。

警报对话框应包含文本和确定按钮。有什么想法吗?

最佳答案

你可以这样做

AlertDialog alertDialog = new AlertDialog.Builder(this).create();
alertDialog.setTitle("Weight");
alertDialog.setMessage("You forgot to enter your weight!");
alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// do something when the user presses OK (place focus on weight input?)
}
});
alertDialog.setIcon(R.drawable.icon);
alertDialog.show();

关于android - 使用警告对话框编辑文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6252029/

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