将编辑文本条目的数量限制为 1000 万
我有一个“数字编辑文本”。我想将“number edittext”的输入限制为 1000 万。我怎样才能实现这个?
I have a "number edittext". I want to limit the entry of the "number edittext" to 10 million. How can I implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为此,您可以在编辑文本中设置限制。尝试以下代码
这将允许您添加最多 999999999 卢比的号码。
you can set limit in Edit Text for this purpose. try following code
This will allow you to add number upto 999999999 Rs.
限制 Android 中 EditText 的文本长度
我不确定你的意思到底是什么,但我猜你不希望文本框大小超过 1 和 7 个零,我认为如果是这种情况,上面的链接应该对你有帮助。
Limit text length of EditText in Android
I am not sure what you mean exactly but i am guessing you don't want the text box size to be more than 1 and 7 zeros, i think the above link should help you if that's the case.