In previous post I made RecyclerView.
In this post, I'll add name filtering ability to RecyclerView.
First add EditText for user input.
Use addTextChangedListener() for catch the change of EditText.
Do DbTask asynchronously.
This sample code is in GitHub.
In this post, I'll add name filtering ability to RecyclerView.
First add EditText for user input.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<EditText | |
android:id="@+id/inputSearch" | |
android:hint="@string/name_filter" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:inputType="text" /> |
Use addTextChangedListener() for catch the change of EditText.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mNameFilter = (EditText) findViewById(R.id.inputSearch); | |
NameFilterWatcher nameFilterWatcher = new NameFilterWatcher(); | |
NameFilterWatcher.NameListChanger nameListChanger = new NameFilterWatcher.NameListChanger() { | |
@Override | |
public void changeNameList(String name) { | |
new FilterNameTestDbTask().execute(name); | |
} | |
}; | |
nameFilterWatcher.setListChanger(nameListChanger); | |
mNameFilter.addTextChangedListener(nameFilterWatcher); |
Do DbTask asynchronously.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private class FilterNameTestDbTask extends AsyncTask<String, Void, Cursor> { | |
@Override | |
protected Cursor doInBackground(String... names) { | |
Cursor cursor = new TestDb(getApplicationContext()).getNames(names[0]); | |
mAdapter.setDataSet(cursor); | |
return cursor; | |
} | |
@Override | |
protected void onPostExecute(Cursor cursor) { | |
super.onPostExecute(cursor); | |
mAdapter.notifyDataSetChanged(); | |
} | |
} |
This sample code is in GitHub.
댓글
댓글 쓰기