显示验证消息
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据我的经验,这是最好的方法:
结果是:
另外,如果输入必须是数字,在
EditText
定义中使用android:inputType="numberSigned"
。这样设备将不允许用户输入非数字值;更好的是,它会显示一个特殊的键盘来执行此操作:From my experience, this is the best way:
The result is:
Also, if the input must be numeric, use
android:inputType="numberSigned"
in theEditText
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:在 xml 中的 EditText 定义上使用 android:numeric打开数字 IME 并使用 android:maxLength =“4”将输入限制为 4 位数字。在按钮上使用 android:onClick 来触发点击处理程序。
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.