美文网首页
自定义EditTextCount

自定义EditTextCount

作者: hongzhenw | 来源:发表于2017-09-12 14:12 被阅读0次

    前言

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

    属性配置

    • 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

    相关文章

      网友评论

          本文标题:自定义EditTextCount

          本文链接:https://www.haomeiwen.com/subject/wlscsxtx.html