Android 中的编辑文本?
有什么方法可以限制在运行时的 EditText
中只能输入 2 位数字。
例如:
如果我设置了 android:inputType="numberDecimal"
并且我正在其中输入值。它接受值 123.000000000000。但我想限制它像 123.00
有没有可能的方法来做到这一点?
Is there any way to restrict that only 2 digits can enter in the EditText
at the Runtime.
For Example:
If i set my android:inputType="numberDecimal"
and i am entering the value in it. It accepts the value 123.000000000000. But i want to restrict it like 123.00
Is there any Possible way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看下面的帖子,也许对您有一些帮助:
防止输入
Take a look at the following post, maybe of some help for you:
Preventing input
您可以使用 TextWatcher 添加验证到
EditText
一个>。You can add validation to an
EditText
using a TextWatcher.