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

android-如何在SearchDialog中實現TextWatcher

編輯:編程綜合問答
如何在SearchDialog中實現TextWatcher

我需要根據SearchDialog中的用戶輸入來更新ListView,這樣的話就需要給SearchDialog設置一個TextWatcher。如何實現這個功能呢?

最佳回答:


你可以照下面做:

yourEditText.addTextChangedListener(new TextWatcher() {
    @Override
    public void onTextChanged(CharSequence s, int start, int before, int count) {
        // process new items for list view
   }
   @Override
    public void beforeTextChanged(CharSequence s, int start, int count,
            int after) {
        // TODO Auto-generated method stub
    }
   @Override
    public void afterTextChanged(Editable s) {
        // push new items into adapter and call notifyDataSetChanged() on it
   }
});
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved