EditText动态设置长度限制
Posted 拜雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EditText动态设置长度限制相关的知识,希望对你有一定的参考价值。
好久没用过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
方法了
以上是关于EditText动态设置长度限制的主要内容,如果未能解决你的问题,请参考以下文章