티스토리 뷰
반응형
// Create()
// 이름 검색 이벤트
mEdtSearch = (EditText)findViewById(R.id.EdtSearch);
mEdtSearch.addTextChangedListener(txtWatcher);
// 이름으로 검색시 change 이벤트
TextWatcher txtWatcher = new TextWatcher(){
@Override
public void afterTextChanged(Editable s) {
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
if (mEdtSearch.isFocusable()){
SetPhoneList();
}
}
};
반응형
'Android > 실전 TIP' 카테고리의 다른 글
전화 걸기 (0) | 2019.03.25 |
---|---|
3 탭뷰 (아이콘) (0) | 2019.03.25 |
알람 통지 서비스 프로그램 (0) | 2019.03.25 |
ftp에서 파일 다운 받기 (0) | 2019.03.25 |
ListView 특정 위치로 스크롤이 가게 하기 (0) | 2019.03.25 |
댓글
반응형
최근에 올라온 글
- Total
- Today
- Yesterday