设置EditText不可编辑

只能使用

editText.setFilters(new InputFilter[] { new InputFilter() {
 @Override
 public CharSequence filter(CharSequence source, int start,
  int end, Spanned dest, int dstart, int dend) {
   return source.length() < 1 ? dest.subSequence(dstart, dend) : "";
 }
} });

 

  1. import android.app.Activity;  
  2. import android.os.Bundle;  
  3. import android.text.InputFilter;  
  4. import android.text.Spanned;  
  5. import android.view.View;  
  6. import android.widget.Button;  
  7. import android.widget.EditText;  
  8. /** 
  9.  * Class which shows how to lock and unlock EditText component 
  10.  * 
  11.  * @author FaYnaSoft Labs 
  12.  */  
  13. public class Main extends Activity {  
  14.     private EditText editText;  
  15.     private boolean value = false;  
  16.     @Override  
  17.     public void onCreate(Bundle savedInstanceState) {  
  18.         super.onCreate(savedInstanceState);  
  19.         setContentView(R.layout.main);  
  20.         editText = (EditText) findViewById(R.id.textId);  
  21.         editText.setText("EditText component");  
  22.         Button b = (Button) findViewById(R.id.btnId);  
  23.         b.setText("Lock/Unlock");  
  24.         b.setOnClickListener(new View.OnClickListener() {  
  25.             @Override  
  26.             public void onClick(View v) {  
  27.                 if (value) {  
  28.                     value = false;  
  29.                 } else {  
  30.                     value = true;  
  31.                 }  
  32.                 lockUnlock(value);  
  33.             }  
  34.         });  
  35.     }  
  36.     /** 
  37.      * Method which locks and unlocks editText component 
  38.      * @param value our boolean value which using in or if operator 
  39.      */  
  40.     private void lockUnlock(boolean value) {  
  41.         if (value) {  
  42.             editText.setFilters(new InputFilter[] { new InputFilter() {  
  43.                 @Override  
  44.                 public CharSequence filter(CharSequence source, int start,  
  45.                         int end, Spanned dest, int dstart, int dend) {  
  46.                     return source.length() < 1 ? dest.subSequence(dstart, dend)  
  47.                             : "";  
  48.                 }  
  49.             } });  
  50.         } else {  
  51.             editText.setFilters(new InputFilter[] { new InputFilter() {  
  52.                 @Override  
  53.                 public CharSequence filter(CharSequence source, int start,  
  54.                         int end, Spanned dest, int dstart, int dend) {  
  55.                     return null;  
  56.                 }  
  57.             } });  
  58.         }  
  59.     }  

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值