带有警告消息的 Android 警报对话框

发布于 2024-12-03 19:07:40 字数 138 浏览 1 评论 0原文

我有一个带有 EditText 的警报对话框,我想在输入的输入文本为空时警告用户。所以要么: - 通过在当前警报对话框的顶部打开一个新的警报对话框,但不关闭当前警报对话框。我尝试了一下,但不知道该怎么做。 - 通过动态更改我的警报对话框上的消息,但我又不知道如何

I have an alert dialog with an EditText in it and I'd like to warn the user when the entered input text is empty. So either :
- by opening a new alert dialog on the top of the current one, but without closing the current one. I tried it and I don't know how to it.
- by changing dynamically the message on my alert dialog, but again I don't how

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

温馨耳语 2024-12-10 19:07:40

尝试一下:

Toast.makeText(this, "You have entered an empty string, silly!", Toast.LENGTH_SHORT).show();

这只是一个简单的弹出对话框,但应该足以满足您的需求。您可以将“Toast.LENGTH_SHORT”更改为“Toast.LENGTH_LONG”,具体取决于您希望对话框保持可见的时间,之后它将消失。

或者更全面的解决方案:

public void alertMessage(string Message)
{
   Toast.makeText(this, Message, Toast.LENGTH_SHORT).show();
}

Try giving this a shot:

Toast.makeText(this, "You have entered an empty string, silly!", Toast.LENGTH_SHORT).show();

It's just a simple popup dialog but it should suffice for your needs. You can change 'Toast.LENGTH_SHORT' to 'Toast.LENGTH_LONG' depending on how long you want the dialog to stay visible, after which it will fade away into oblivion.

Or for a more comprehensive solution:

public void alertMessage(string Message)
{
   Toast.makeText(this, Message, Toast.LENGTH_SHORT).show();
}
反差帅 2024-12-10 19:07:40

当您为 AlertDialog 设置按钮时,您可以做您想做的事情,例如:

    .setPositiveButton("Yes", new DialogInterface.OnClickListener() {
               public void onClick(DialogInterface dialog, int id) {
                    //Here check to see if you have an empty EditText and take appropriate measures
               }
           })

You could do what you want when you set the buttons for your AlertDialog like:

    .setPositiveButton("Yes", new DialogInterface.OnClickListener() {
               public void onClick(DialogInterface dialog, int id) {
                    //Here check to see if you have an empty EditText and take appropriate measures
               }
           })

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文