本文介绍了如何限制的EditText只接受字母数字字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我怎样才能限制的的EditText
只接受字母数字字符,小写和大写字符显示如的EditText $ C大写$ C>?
How can I restrict an EditText
to accept only alphanumeric characters, with both lowercase and uppercase characters showing as uppercase in the EditText
?
<EditText
android:id="@+id/userInput"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:minLines="3" >
<requestFocus />
</EditText>
如果在小写ABCD用户类型,在的EditText
应自动显示大写的ABCD,而无需限制键盘为大写。
If a user types in lowercase "abcd", the EditText
should automatically show uppercase "ABCD" without needing to restrict the keyboard to uppercase.
推荐答案
在XML中,补充一点:
In the XML, add this:
android:digits="abcdefghijklmnopqrstuvwxyz1234567890 "
这篇关于如何限制的EditText只接受字母数字字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!