自定义EditTextCount
2017-09-12 本文已影响0人
hongzhenw
前言
用户发表意见、评论,用于监听用户输入输入文字个数,并限制输入的最大个数
属性配置
- background_color :边框颜色
- max_count_color :右下角文字计数颜色
- max_count:限制输入最大数字个数
- default_hint:默认提示文字
示例布局
<com.gmrz.edittextcount.view.EditTextCountView
android:id="@+id/et_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textCursorDrawable="@null"
app:default_hint="发表意见.."
app:max_count="8"/>
调用代码
mCountView.setOnInputCountListener(new EditTextCountView.OnInputCountListener() {
@Override
public void process(boolean aBoolean) {
if (aBoolean) {
Toast.makeText(MainActivity.this, "抱歉,您已输入最大限制数字", Toast.LENGTH_SHORT).show();
}
}
});
演示截图
Untitled.gif下载地址:Github