程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-如何知道一個edittext失去焦點

android-如何知道一個edittext失去焦點

編輯:編程綜合問答
如何知道一個edittext失去焦點

我需要捕捉一個edittext什麼時候失去了焦點。我在用戶的問題裡搜索,但是沒有發現任何答案。我使用以下的focuschangelistener事件:

OnFocusChangeListener foco = new OnFocusChangeListener() {

    @Override
    public void onFocusChange(View v, boolean hasFocus) {
        // TODO Auto-generated method stub

    }
};

但還是捕捉不到,請求大家給點指點,謝謝!

最佳回答:


實現setOnFocusChangeListener中的onFocusChange方法,在hasFocus中有一個boolean型參數。當它是false時,光標就會轉到另一個控件。

EditText txtEdit= (EditText) findViewById(R.id.edittxt);

 txtEdit.setOnFocusChangeListener(new OnFocusChangeListener() {          

        public void onFocusChange(View v, boolean hasFocus) {
            if(!hasFocus)
               //do job here owhen Edittext lose focus 
        }
    });
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved