EditText可以在xml中设置digits属性来限制用户的输入内容。如下面可以限制用户只输入数字
android:digits="1234567890"
那么在Java代码中该如何设置呢?
EditText是没有setDigits方法的。那么我们就从源码上看一下它是怎么从xml属性中获取值,然后使其生效的。
EditText是继承了TextView,digits属性是在TextView中获取并生效的。
-
定义一个CharSequence对象
-
从xml属性中获取digits值并附给上面的对象
-
用digits给TextView的Editor初始化一个KeyListener
这里源码中并没有直接给TextView设置digits属性,而是使用了Editor来进行了限制。那么Editor是什么呢?
源码中进行的解释是这样的:TextView用来处理可编辑文本的帮助类(个人直译,可能不准哈,能明白意思就ok)
Helper class used by TextView to handle editable text views.
也就是说因为EditText继承了TextView。EditText中的编辑的文本并不是在EditText中进行处理的,而是由其父类TextView通过创见了一个Editor用来控制。这里就不对Editor进行过多的解释,咱们的目的是想看看到底java代码中是怎么设置digits的嘛,大方向不能乱。
上面的源码看到是给Editor设置了keyListener,从而实现digits属性的。这个KeyListener不仅可以设置digits属性,还可以设置
* @attr ref android.R.styleable#TextView_numeric
* @attr ref android.R.styleable#TextView_digits
* @attr ref android.R.styleable#TextView_phoneNumber
* @attr ref android.R.styleable#TextView_inputMethod
* @attr ref android.R.styleable#TextView_capitalize
* @attr ref android.R.styleable#TextView_autoText
不过这里我们只关心digits
幸运的是在TextView有直接设置KeyListener的方法,也就算说我们可以参照源码那样,直接setKeyListener来设置digits属性
editText.setKeyListener(DigitsKeyListener.getInstance("0123456789"));
总结
源码是最好的参考资料,如果错误,欢迎大家指正!