对安卓控件的不熟悉真的是很浪费时间,之前还弄个函数来实现,花不少时间,后来发觉,xml里面设置一个android:maxLength="8"就够了。
===================

这里转一篇函数实现的,Android中TextView输入字数统计和限制: (转自:http://lishuaishuai.iteye.com/blog/1128230)

在Android开发应用的时候,文本编辑框中最多输入140个字,经常会显示还剩多少字以限制用户输入的字数,

  EditText content;//定义一个文本输入框

TextView hasnum;// 用来显示剩余字数

int num = 140;//限制的最大字数

  content = (EditText) findViewById(R.id.et_content);

hasnumTV = (TextView) findViewById(R.id.tv_num);

hasnumTV.setText(num+"");

  下面为EditText文本框添加监听

  content.addTextChangedListener(new TextWatcher() {
  private CharSequence temp;
  private int selectionStart;
  private int selectionEnd;

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


  }

    public void onTextChanged(CharSequence s, int start, int before, int count) {
  temp = s;
  }

      

  public void afterTextChanged(Editable s) {
  int number = num - s.length();
  hasnumTV.setText("" + number);
  selectionStart = content.getSelectionStart();
  selectionEnd = content.getSelectionEnd();
  if (temp.length() > num) {
  s.delete(selectionStart - 1, selectionEnd);
  int tempSelection = selectionEnd;
  content.setText(s);
  content.setSelection(tempSelection);//设置光标在最后
  }
  }
  });

更多相关文章

  1. Android(安卓)输入法/ 软键盘 显示模式 设置(android:windowSoftI
  2. 在测试环境模拟电话的进入和短信的进入
  3. Android之EditText 属性汇总
  4. Android实现简单拨打电话功能
  5. android EditText基本设置
  6. android监听软键盘+吐槽!
  7. Android输入子系统之InputReader读取键盘消息过程分析
  8. android api (82) ―― InputConnection [输入法]
  9. Android(安卓)studio 卡的问题

随机推荐

  1. Android开发人员不得不收集的代码(持续更
  2. Android(安卓)HIDL 简介
  3. 第九篇 ANDROID包管理服务机制与架构
  4. Android(安卓)Service总结03 之被启动的
  5. 使用Struts2服务端与android交互
  6. Androidの通过查询电话号码或ID获取联系
  7. android基本的数据库创建和使用
  8. Android(安卓)Studio 没有assets目录的问
  9. OpenGL ES教程IV之着色(原文对照)
  10. Android环境变量作用--命令行操作(ADB、AV