addTextChangeListener を使用してリスト アイテムをフィルタリングします。ユーザーが editText に文字を入力すると、ユーザー入力に基づいてアイテムがフィルター処理されます。たとえば、ユーザーが「stackoverflow」と入力すると、「stackoverflow」を含むすべての項目が表示されます。ユーザーがバックスペースを押して文字を削除すると、すべての文字を削除するまでアイテムはフィルタリングされなくなります。
たとえば、私のアイテムは「stackoverflow 1」、「stackoverflow 2」、「stackoverflow 3」、「stackoverflow 4」です。
ユーザー入力が「stackoverflow」の場合、すべての項目が表示されます。ユーザー入力が「stackoverflow 1」の場合、「stackoverflow 1」のみが表示されます。次に、ユーザーは最後の 2 文字 (1 とスペース) を削除します。ユーザー入力は「stackoverflow」になりましたが、「stackoverflow 1」は引き続き表示され、他の項目は表示されません。
これは私のカスタムフィルターです:
private class ServiceFilter extends Filter {
@Override
protected FilterResults performFiltering(CharSequence constraint) {
FilterResults results = new FilterResults();
if (constraint == null || constraint.length() == 0) {
// No filter implemented we return all the list
results.values = origServiceList;
results.count = origServiceList.size();
}
else {
List<ServiceModel> nServiceList = new ArrayList<ServiceModel>();
for (ServiceModel s : serviceList) {
if (s.getName().toLowerCase().contains(constraint.toString().toLowerCase())) {
nServiceList.add(s);
}
}
results.values = nServiceList;
results.count = nServiceList.size();
}
return results;
}
@Override
protected void publishResults(CharSequence constraint, FilterResults results) {
if (results.count == 0) {
notifyDataSetInvalidated();
}
else {
serviceList = (List<ServiceModel>) results.values;
notifyDataSetChanged();
}
}
}
そして、テキスト変更イベントを処理する方法:
inputSearch.addTextChangedListener(new TextWatcher() {
@Override
public void afterTextChanged(Editable arg0) {
// TODO Auto-generated method stub
}
@Override
public void beforeTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) {
// TODO Auto-generated method stub
}
@Override
public void onTextChanged(CharSequence cs, int arg1, int arg2, int arg3) {
if (cs.length() >= 1) {
mAdapter.getFilter().filter(cs);
}
else {
mAdapter = new ServiceAdapter(MyActivity.this, R.layout.ussd_list_item, serviceList);
listView.setAdapter(mAdapter);
}
}
});