显示验证消息

发布于 2024-10-18 09:50:27 字数 165 浏览 3 评论 0原文

我有一个 XML 布局文件,其中包含一个 EditText 和一个 Button。我想显示以下验证消息以向用户提供反馈:

您必须输入 4 个数字

完成此操作的最佳方法是什么?

I have an XML layout file that contains an EditText and a Button. I would like to display the following validation message to provide feedback to the user:

You must enter 4 numbers

What's the best way to go about accomplishing this?

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

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

发布评论

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

评论(2

蓝海 2024-10-25 09:50:27

根据我的经验,这是最好的方法:

EditText yourEditText;

// when you detect an error:
yourEditText.setError("Input must be 4 digits and numeric");

结果是:

在此处输入图像描述

另外,如果输入必须是数字,在 EditText 定义中使用 android:inputType="numberSigned"。这样设备将不允许用户输入非数字值;更好的是,它会显示一个特殊的键盘来执行此操作:

在此处输入图像描述

From my experience, this is the best way:

EditText yourEditText;

// when you detect an error:
yourEditText.setError("Input must be 4 digits and numeric");

The result is:

enter image description here

Also, if the input must be numeric, use android:inputType="numberSigned" in the EditText definition. That way the device won't allow the user to put non-numeric values; even better, it will show a special keyboard to do so:

enter image description here

倒数 2024-10-25 09:50:27

在 xml 中的 EditText 定义上使用 android:numeric打开数字 IME 并使用 android:maxLength =“4”将输入限制为 4 位数字。在按钮上使用 android:onClick 来触发点击处理程序。

public void onClick(View v) {
    if(mEditText.length() != 4) { // check if 4 digits
        Toast.makeText(this, "Input must be 4 digits and numeric", Toast.LENGTH_SHORT).show();
    }
}

On the EditText definition in the xml use android:numeric to bring up the numeric IME and use android:maxLength = "4" to limit the input to 4 digits. Use android:onClick on the button to trigger a click handler.

public void onClick(View v) {
    if(mEditText.length() != 4) { // check if 4 digits
        Toast.makeText(this, "Input must be 4 digits and numeric", Toast.LENGTH_SHORT).show();
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文