【开源】LimitedEditText

LimitedEditText

介绍:

带字符限制提示的文字输入框,数字提示显示在一个用id和LimitedEditText关联的TextView中。

运行效果:

使用说明:

1
2
3
4
5
6
7
8
9
10
11
12
13
<com.github.ggilrong.widget.LimitedEditText
    android:id="@+id/limitedEditText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:inputType="text|textMultiLine"
    app:formatter="%s/%s"
    app:limitCount="100"
    app:warningFontColor="@android:color/black"
    app:wordCountTextView="@+id/countTextView" />
<TextView
    android:id="@+id/countTextView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

 

相关代码

  • MaterialEditText

posted on 2015-04-29 10:10  wasdchenhao  阅读(111)  评论(0)    收藏  举报

导航