歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android中限制EditText(輸入框)文字輸入長度

開發過程經常遇到要輸入用戶名等類似要限制輸入字數的要求,我們可以用InputFilter來實現,

下面是繼承的InputFilter:

[java]

  1. public class MyInputFilter implements InputFilter {  
  2.   
  3.    private Paint mPaint;  
  4.      
  5.    private int mMaxWidth;  
  6.   
  7.    private static final String TAG = "MyInputFilter";  
  8.      
  9.    private int EDIT_WIDTH = 280;  
  10.      
  11.    private int mPadding = 10;  
  12.      
  13.    public MyInputFilter(Paint paint, int maxWidth) {  
  14.       if (paint != null) {  
  15.          mPaint = paint;  
  16.       } else {  
  17.          mPaint = new Paint();  
  18.          mPaint.setTextSize(30F);  
  19.       }  
  20.   
  21.       if (maxWidth > 0) {  
  22.          mMaxWidth = maxWidth - mPadding;  
  23.       } else {  
  24.          mMaxWidth = EDIT_WIDTH;  
  25.       }  
  26.   
  27.    }  
  28.   
  29.   
  30.    @Override  
  31.    public CharSequence filter(CharSequence source, int start, int end,  
  32.          Spanned dest, int dstart, int dend) {  
  33.   
  34.       float w = mPaint.measureText(dest.toString() + source.toString());  
  35.       if (w > mMaxWidth) {  
  36.          //TODO: remind the user not to input anymore   
  37.          return "";  
  38.       }  
  39.   
  40.       return source;  
  41.    }  
  42.   
  43. }  

這樣來使用它:

[java]
  1. /* 
  2.    * Set edit text input max length constraint to border. 
  3.    */  
  4.   public static void setEditTextFilter(EditText edit) {  
  5.       
  6.      int width = edit.getWidth();  
  7.       
  8.      Utils.log("Uitls""edit width = " + width);  
  9.           
  10.      Paint paint = new Paint();  
  11.      paint.setTextSize(edit.getTextSize());  
  12.       
  13.      InputFilter[] filters = { new MyInputFilter(paint, width) };  
  14.       
  15.      edit.setFilters(filters);  
  16.   }  

用這樣方法的優點是可以用在多個輸入框中,可是有個缺點是當用聯想輸入法一次輸入較長的中文詞語或英文單詞後,不會自動截斷詞語或單詞。

(全文完)

Copyright © Linux教程網 All Rights Reserved