Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 android/eclipse 上限制带有数字和特殊符号的编辑文本框。
即,我必须只允许字符(az & AZ)而不是其他字符。
是否有任何选项可以通过 .xml(file) 执行此操作?
提前致谢!。
//它是可用的
在您的 string.xml 中,您可以将资源添加为
<string name="specific_chars">ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz _1234567890</string>
并在您的编辑文本中访问添加属性为
android:digits="@string/specific_chars"
现在只有指定的字符只有edittext才会使用。