EditText監聽方法,實時的判斷輸入多少字元

yangxi_001發表於2014-10-08

最近在寫一個小專案,其中有一點用到了顯示EditText中輸入了多少個字元,像微博中顯示剩餘多少字元的功能。在EditText提供了一個方法addTextChangedListener實現對輸入文字的監控。下邊是我自己寫的一個Demo。

程式碼實現:

佈局檔案main.xml

[html] view plaincopy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="vertical"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent"  
  6.     >  
  7. <TextView  android:id="@+id/tv"  
  8.     android:layout_width="fill_parent"   
  9.     android:layout_height="wrap_content"   
  10.     android:textColor="@android:color/white"   
  11.     android:text="Please input the text:"  
  12.     />  
  13. <EditText android:id="@+id/ET"   
  14.     android:layout_width="match_parent"   
  15.     android:layout_height="wrap_content"  
  16.     />  
  17. </LinearLayout>  
Activity
[java] view plaincopy
  1. package com.damai.test;  
  2.   
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.text.Editable;  
  6. import android.text.TextWatcher;  
  7. import android.widget.EditText;  
  8. import android.widget.TextView;  
  9. import android.widget.Toast;  
  10.   
  11. public class TestActivity extends Activity {  
  12.     private TextView mTextView;  
  13.     private EditText mEditText;  
  14.     @Override  
  15.     public void onCreate(Bundle savedInstanceState) {  
  16.         super.onCreate(savedInstanceState);  
  17.         setContentView(R.layout.main);  
  18.         mTextView = (TextView)findViewById(R.id.tv);  
  19.         mEditText = (EditText)findViewById(R.id.ET);  
  20.         mEditText.addTextChangedListener(mTextWatcher);  
  21.     }  
  22.       
  23.     TextWatcher mTextWatcher = new TextWatcher() {  
  24.         private CharSequence temp;  
  25.         private int editStart ;  
  26.         private int editEnd ;  
  27.         @Override  
  28.         public void onTextChanged(CharSequence s, int start, int before, int count) {  
  29.             // TODO Auto-generated method stub  
  30.              temp = s;  
  31.         }  
  32.           
  33.         @Override  
  34.         public void beforeTextChanged(CharSequence s, int start, int count,  
  35.                 int after) {  
  36.             // TODO Auto-generated method stub  
  37. //          mTextView.setText(s);//將輸入的內容實時顯示  
  38.         }  
  39.           
  40.         @Override  
  41.         public void afterTextChanged(Editable s) {  
  42.             // TODO Auto-generated method stub  
  43.             editStart = mEditText.getSelectionStart();  
  44.             editEnd = mEditText.getSelectionEnd();  
  45.             mTextView.setText("您輸入了" + temp.length() + "個字元");  
  46.             if (temp.length() > 10) {  
  47.                 Toast.makeText(TestActivity.this,  
  48.                         "你輸入的字數已經超過了限制!", Toast.LENGTH_SHORT)  
  49.                         .show();  
  50.                 s.delete(editStart-1, editEnd);  
  51.                 int tempSelection = editStart;  
  52.                 mEditText.setText(s);  
  53.                 mEditText.setSelection(tempSelection);  
  54.             }  
  55.         }  
  56.     };  
  57. }  

相關文章