好久没用过EditText限制长度了,今天用代码设置都不知道该怎么用了,记录下吧
一般我们在xml
中使用maxLength来设置,如下:
<EditText
android:id="@+id/et_no"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="number"
android:maxLength="2"
android:textColor="@android:color/black"
android:textSize="16sp" />
但是你在代码中会发现没有setMaxLength这个方法,然而设置setEms这个还没用,我曹了。然后看了下TextView
源码是这样设置的
setFilters(new InputFilter[] { new InputFilter.LengthFilter(maxLength) });
所以要是代码限制长度就需要使用setFilters
方法了