Global It Leader!!



 
 

모바일 [Android] Dynamic Search ListView

페이지 정보

작성자 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 1,968회 작성일 14-09-01 10:35

본문

< EditText과 Filter를 이용한 Search >

EditText의 addTextChangedListener를 통해서 EditText에 입력되는 값을 실시간으로 처리해줄수 있게 된다.

et_search_word.addTextChangedListener(new TextWatcher() {

@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
_listAdapter.getFilter().filter(s);

}

@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub

}

@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
}
});

onTextChanged를 통해서 입력되는 값에 대해서 실시간으로 처리해준다.

ListView를 구성하는 Adapter에 implements Filterable 를 통해서 Filtering을 할 수 있게 된다.

Adapter 내에
@Override
public Filter getFilter() {
     if (valueFilter == null) {
     valueFilter = new ValueFilter();
     }
    
     return valueFilter;
}

구현해주고
Filter에 해당하는 class를 구현해서 적용하면 끝.

class ValueFilter extends Filter {
   
    @Override
    protected FilterResults performFiltering (CharSequence constraint) {
    FilterResults results = new FilterResults();
   
    if(constraint != null && constraint.length() > 0) {
    List<ItemContainer> filterList = new ArrayList<ChatFriendFragment.ItemContainer>();
   
    for (RosterContact contact : _contacts) {
    if (contact.getName().contains(constraint) || contact.getPhoneNumber().contains(constraint)) {
    ItemContainer item = new ItemContainer();
    item.Type = ItemContainer.TYPE_ITEM;
            item.Item = contact;
            filterList.add(item);
    }
        }
   
    results.count = filterList.size();
    results.values = filterList;
    } else {
    setupListItems();
    results.count = _itemList.size();
    results.values = _itemList;
    }
   
    return results;
    }

@Override
protected void publishResults(CharSequence constraint,
FilterResults results) {

_itemList = (List<ItemContainer>) results.values;

_listAdapter.notifyDataSetChanged();

}
    }

댓글목록

등록된 댓글이 없습니다.

전체 79
게시물 검색
모바일세상 목록
번호 제목 글쓴이 조회 날짜
59 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2392 05-18
58 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 1979 05-14
57 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 1981 05-14
56 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5597 05-14
55 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2012 05-07
54 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2261 04-20
53 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2403 03-31
52 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2209 03-31
51 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2299 09-01
50 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2706 09-01
49 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 1860 09-01
열람중 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 1969 09-01
47 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2492 09-01
46 제이쿼리 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 1985 09-01
45 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2146 08-31
44 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2015 08-31
43 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3616 08-31
42 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 2166 08-30
41 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 1987 08-30
40 모바일 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 3259 08-29