3 つの TextView を持つ ListView があります。そして、最初の TextView だけをフィルタリングするフィルターを作成したいと思います。しかし、作成したフィルターは、ListView 内のすべての項目をフィルター処理しています。特定の TextView のみをフィルタリングする方法はありますか?
...
filterText = (EditText) findViewById(R.building_list.search_box);
filterText.addTextChangedListener(filterTextWatcher);
ListAdapter adapter = new SimpleAdapter(this, menuItems,
R.layout.list_item,
new String[] {KEY_NAME, KEY_DESC, KEY_DATE, KEY_LINK }, new int[] {
R.id.name, R.id.desciption, R.id.date, R.id.link});
Filter filterx = ((Filterable) adapter).getFilter();
setListAdapter(adapter);
...