当前位置: 代码迷 >> Android >> Android editText 输入篇幅限制
  详细解决方案

Android editText 输入篇幅限制

热度:130   发布时间:2016-05-01 16:29:05.0
Android editText 输入字数限制

方法一:
???????? // 输入框限制输入字数
?? ???? editText.addTextChangedListener(new TextWatcher() {
?? ???? ??? private CharSequence temp;
?? ???? ??? private boolean isEdit = true;
?? ???? ??? private int selectionStart ;
?? ???????? private int selectionEnd ;
?? ???????? @Override
?? ???????? public void beforeTextChanged(CharSequence s, int arg1, int arg2,
?? ???????? ??? ??? int arg3) {
?? ???????? ??? temp = s;
?? ???????? }
?? ????????
?? ???????? @Override
?? ???????? public void on

TextChanged(CharSequence s, int arg1, int arg2,
?? ???????? ??? ??? int arg3) {
?? ???????? }
?? ????????
?? ???? ??? @Override
?? ???? ??? public void afterTextChanged(Editable s) {
?? ???? ??? ???? selectionStart = editText.getSelectionStart();
?? ???????? ??? selectionEnd = editText.getSelectionEnd();
?? ???????? ??? Log.i("gongbiao1",""+selectionStart);
?? ???? ??? ??? if (temp.length() > Constant.TEXT_MAX) {
?? ???? ??? ??? ??? Toast.makeText(KaguHomeActivity.this,
?? ???????? ??? ??? ??? ??? R.string.edit_content_limit, Toast.LENGTH_SHORT)
?? ???????? ??? ??? ??? ??? .show();
?? ???? ??? ??? ??? s.delete(selectionStart-1, selectionEnd);
?? ???? ??? ??? ??? int tempSelection = selectionStart;
?? ???? ??? ??? ??? editText.setText(s);
?? ???? ??? ??? ??? editText.setSelection(tempSelection);
?? ???? ??? ??? }
?? ???? ??? }


?? ???? });


????? 方法二:
???????? 利用EditText可以设置filter的特性,自定义一个LengthFilter,当输入字数超过限制时 ,做出自定义的提示
????????? // 输入框限制输入字数
??? ??? InputFilter[] filters = new InputFilter[1];
??? ??? filters[0] = new InputFilter.LengthFilter(Constant.TEXT_MAX) {
??? ??? ??? @Override
??? ??? ??? public CharSequence filter(CharSequence source, int start, int end,
??? ??? ??? ??? ??? Spanned dest, int dstart, int dend) {
??? ??? ??? ??? if (source.length() > 0 && dest.length() == Constant.TEXT_MAX) {
??? ??? ??? ??? ??? if ((System.currentTimeMillis() - toastTime) > interval) {
??? ??? ??? ??? ??? ??? toastTime = System.currentTimeMillis();
??? ??? ??? ??? ??? ??? Toast
??? ??? ??? ??? ??? ??? ??? ??? .makeText(KaguHomeActivity.this,
??? ??? ??? ??? ??? ??? ??? ??? ??? ??? R.string.edit_content_limit,
??? ??? ??? ??? ??? ??? ??? ??? ??? ??? Toast.LENGTH_SHORT).show();
??? ??? ??? ??? ??? }
??? ??? ??? ??? }
??? ??? ??? ??? if (dest.toString().equals(
??? ??? ??? ??? ??? ??? getResources().getString(R.string.input_default_txt))) {
??? ??? ??? ??? ??? Bundle data = new Bundle();
??? ??? ??? ??? ??? data.putCharSequence("source", source);
??? ??? ??? ??? ??? Message message = textHandler.obtainMessage();
??? ??? ??? ??? ??? message.setData(data);
??? ??? ??? ??? ??? message.sendToTarget();
??? ??? ??? ??? }

??? ??? ??? ??? return super.filter(source, start, end, dest, dstart, dend);
??? ??? ??? }
??? ??? };
??? ??? editText.setFilters(filters);
private Handler textHandler = new Handler() {
??? ??? @Override
??? ??? public void handleMessage(Message msg) {

??? ??? ??? Bundle data = msg.getData();
??? ??? ??? CharSequence source = data.getCharSequence("source");
??? ??? ??? editText.setTextColor(Color.BLACK);
??? ??? ??? editText.setText(source);
??? ??? ??? editText.setSelection(source.length());
??? ??? }
??? };
?

===========简单方法=====

TextView tv = new TextView(this);?
int maxLength = 10;?
InputFilter[] fArray = new InputFilter[1];?
fArray
[0] = new InputFilter.LengthFilter(maxLength);?
tv
.setFilters(fArray)?
3.如果这时候你还想告诉别人 字数达到最大限度了 想弹出对话框,可是这时候因为有输入法不能弹出 所有要取消输入法然后才能谭 因此需要去掉输入法

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); ??
? ?imm
.hideSoftInputFromWindow(editTextField.getWindowToken(), 0);??

你或许想用editText的OnKeyListener事件,可是当一个单词没有写完的话 还是不能响应这个事件不符合字数

所有只有先取消掉输入法。

  相关解决方案