自定义EditTextCount

2017-09-12  本文已影响0人  hongzhenw

前言

用户发表意见、评论,用于监听用户输入输入文字个数,并限制输入的最大个数

属性配置

示例布局

  <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

上一篇下一篇

猜你喜欢

热点阅读