91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何解決Android項目中EditText對字數的檢測和限制

發布時間:2020-11-26 16:37:16 來源:億速云 閱讀:237 作者:Leah 欄目:移動開發

如何解決Android項目中EditText對字數的檢測和限制?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

控件EditText在Android布局中經常用到,對EditText中輸入的內容也經常需要進行限制,我們可以通過TextWatcher去觀察輸入框中輸入的內容。

public class TextWatcherDemo extends Activity {
  private TextView mTextView;
  private EditText mEditText;
  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    mTextView = (TextView)findViewById(R.id.tv);
    mEditText = (EditText)findViewById(R.id.ET);
    mEditText.addTextChangedListener(mTextWatcher);
  }
  TextWatcher mTextWatcher = new TextWatcher() {
    private CharSequence temp;
    private int editStart ;
    private int editEnd ;
    @Override
    public void beforeTextChanged(CharSequence s, int arg1, int arg2,
        int arg3) {
      temp = s;
    }
    
    @Override
    public void onTextChanged(CharSequence s, int arg1, int arg2,
        int arg3) {
      mTextView.setText(s);
    }
    
    @Override
    public void afterTextChanged(Editable s) {
      editStart = mEditText.getSelectionStart();
      editEnd = mEditText.getSelectionEnd();
      if (temp.length() > 10) {
        Toast.makeText(TextWatcherDemo.this,
            "你輸入的字數已經超過了限制!", Toast.LENGTH_SHORT)
            .show();
        s.delete(editStart-1, editEnd);
        int tempSelection = editStart;
        mEditText.setText(s);
        mEditText.setSelection(tempSelection);
      }
    }
  };
}

關于android中的編碼

result.getBytes() 是 new String(byte[]) 的逆過程。

前面那個是 String->byte[] ,后面那個是 byte[] -> String.

在Java運行時的時候,String與String是沒有區別的都是以2字節的unicode的形式存在內存中,所謂編碼,是針對把String轉換成 byte[]而言的。比如我可以把 "abc" 通過 utf-8轉換成了一串數據 A ,也可以通過gb2312轉換成另一串數據 B,這個過程就是 String.getBytes(),比如 "abc".getBytes("utf-8")得到A , "abc".getBytes("gb2312")得到B。如果是"abc".getBytes(),就不知道用的什么編碼了,這和平臺相關。

那如何從A串或者 B串重新得到String呢,那就是 new String(A,"utf-8") 或者 new String(B,"gb2312")。因為A是從utf-8轉換得到的,所以用utf-8轉回String ,如果new String(A,"gb2312"), 那么其中的中文就是亂碼。

下面列出各編碼格式下字符的字節數:

英文字母:A

字節數:1;編碼:GB2312 
字節數:1;編碼:GBK 
字節數:1;編碼:GB18030 
字節數:1;編碼:ISO-8859-1 
字節數:1;編碼:UTF-8 
字節數:4;編碼:UTF-16 
字節數:2;編碼:UTF-16BE 
字節數:2;編碼:UTF-16LE 

中文漢字:人

字節數:2;編碼:GB2312 
字節數:2;編碼:GBK 
字節數:2;編碼:GB18030 
字節數:1;編碼:ISO-8859-1 
字節數:3;編碼:UTF-8 
字節數:4;編碼:UTF-16 
字節數:2;編碼:UTF-16BE 
字節數:2;編碼:UTF-16LE 

根據上面的結果,我們可以通過每個字符的UTF-8字節數來判斷是中文還是英文。

工作中遇到一個需求,是要限制EditText中輸入的字符數的個數,中文15個,英文30個,中英文會交叉輸入,就可以用上面的條件來判斷。

具體的實現如下:

 private TextWatcher mInputTextWatcher = new TextWatcher() {
    private String temp;
    private int editStart;
    private int editEnd;

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

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

    @Override
    public void afterTextChanged(Editable s) {
      mMainHandler.removeMessages(HD_MSG_UPDATE_HINT);
      mCurrentHint = s.toString().trim();

      if (!TextUtils.isEmpty(temp)) {
        String limitSubstring = getLimitSubstring(temp);
        if (!TextUtils.isEmpty(limitSubstring)) {
          if (!limitSubstring.equals(temp)) {
            // Toast.makeText(activity, "字數已超過限制",
            // Toast.LENGTH_SHORT).show();
            mEdtInput.setText(limitSubstring);
            mEdtInput.setSelection(limitSubstring.length());
          }
        }
      }
      mMainHandler.sendEmptyMessageDelayed(HD_MSG_UPDATE_HINT, HINT_UPDATE_DALEY_TIME);
    }
  };
private String getLimitSubstring(String inputStr) {
    int orignLen = inputStr.length();
    int resultLen = 0;
    String temp = null;
    for (int i = 0; i < orignLen; i++) {
      temp = inputStr.substring(i, i + 1);
      try {// 3 bytes to indicate chinese word,1 byte to indicate english
         // word ,in utf-8 encode
        if (temp.getBytes("utf-8").length == 3) {
          resultLen += 2;
        } else {
          resultLen++;
        }
      } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
      }
      if (resultLen > 30) {
        return inputStr.substring(0, i);
      }
    }
    return inputStr;
  }

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

彩票| 金华市| 商丘市| 丰镇市| 保德县| 徐州市| 昔阳县| 灯塔市| 临夏市| 林芝县| 七台河市| 繁峙县| 台山市| 金塔县| 舒城县| 普安县| 手机| 项城市| 冷水江市| 罗定市| 万宁市| 肇庆市| 原阳县| 长葛市| 枝江市| 浮梁县| 杭州市| 原平市| 禄丰县| 衡阳市| 建平县| 嘉峪关市| 阜平县| 名山县| 浦东新区| 康乐县| 清流县| 江津市| 平遥县| 漳州市| 合作市|