效果图如下所示(文本框中输入数字时,右下角自动统计数字)
实现思路
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方法实现。