Android实现文本框EditText中自动计数

本文介绍了一种在Android应用中实现文本框自动计数的方法。通过使用EditText的addTextChangedListener监听输入变化,并利用afterTextChanged方法更新计数显示。同时实现了输入字符数量限制功能。
摘要由CSDN通过智能技术生成

效果图如下所示(文本框中输入数字时,右下角自动统计数字)

实现思路

EditText提供了一个方法addTextChangedListener实现对输入文本的监控。

addTextChangedListener这个方法中,需要一个TextWatcher对象,在TextWatcher中提供了三个回调方法:(1)文本改变之前:beforTextChanged,(2)文本改变:onTextChanged,(3)文本改变之后:afterTextChange.

 

代码实现

布局文件只需要一个是EditText和两个TextView(图中的“5”用到的就是这个TextView,“/500”是另写的静态的文本框)。

布局如下:

 <TextView
            android:id="@+id/textView4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@android:color/darker_gray"
            android:text="/500" />


        <EditText
            android:id="@+id/editText1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@null"//去掉边框
            android:hint="请简要描述您遇到的问题,我们会尽快为您解决(最少5个字)"
            android:layout_alignParentLeft="true"
            android:textSize="15sp"
            android:gravity="top"
            android:cursorVisible="false"//初始化光标不显示
            android:layout_alignParentTop="true"
            android:ems="10" >
            <requestFocus />
        </EditText>


        <TextView
            android:id="@+id/textView3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_toLeftOf="@+id/textView4"
            android:textColor="@android:color/darker_gray"
            android:text="0" />

在MainActivity的onCreate方法中添加如下代码:

tv_show = (TextView) findViewById(R.id.textView3);

            ed_content = (EditText) findViewById(R.id.editText1);

            
              ed_content.addTextChangedListener(new TextWatcher() {

                  private CharSequence temp;

                  private int editStart;

                  private int editEnd;

                  @Override

                  public void onTextChanged(CharSequence s, int start, int before, int count) {

                  temp = s;

                  }

                  @Override

                  public void beforeTextChanged(CharSequence s, int start, int count, int after) {

                  // tv_show.setText(s);// 将输入的内容实时显示

                  }

                  @Override

                  public void afterTextChanged(Editable s) {

                  // TODO Auto-generated method stub

                        editStart = ed_content.getSelectionStart();

                        editEnd = ed_content.getSelectionEnd();

                        tv_show.setText(String.valueOf(temp.length()));//此处需要进行强制类型转换

                        if (temp.length() > 500) {//条件判断可以实现其他功能

                        s.delete(editStart - 1, editEnd);

                        int tempSelection = editStart;

                        ed_content.setText(s);

                        ed_content.setSelection(tempSelection);

                        Toast.makeText(MainActivity.this, "你输入的字数已经超过了!", Toast.LENGTH_SHORT).show();

                        }

                        }

                  });

总结:文本框自动计数,主要依靠afterTextChanged方法实现。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值