EditText 验证 - 无数字
我正在为 EditText 寻找 android:inputType
以确保用户无法输入任何数字,而是输入所有不同类型的字母。
我认为, inputType 是正确的 xml 属性我必须改变,但我找不到合适的值。有人有解决办法吗? android:digits
有帮助吗?
提前致谢, 乔纳森
I´m looking for an android:inputType
for an EditText to make sure the user can´t enter any number, but all different kinds of lettres.
I thought, the inputType is the right xml-attribute I have to change, but I can´t find a suitable value. Does anybody have a solution? Does android:digits
help?
Thanks in advance,
Jonathan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 InputFilter 以某种方式限制输入t 在
inputType
中可用。我认为android:digits
与您想要的相反。You can use an InputFilter to restrict the input in a way that isn't available in
inputType
. I thinkandroid:digits
is the opposite of what you want.