【轉】EditText監聽方法,即時的判斷輸入多少字元

來源:互聯網
上載者:User

標籤:android   blog   http   color   java   os   io   strong   檔案   

最近在寫一個小項目,其中有一點用到了顯示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. }  

【轉】EditText監聽方法,即時的判斷輸入多少字元

相關關鍵詞:
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.