Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: what does "setTextFilterEnabled" method do?

Tags:

What does the setTextFilterEnabled() method do?

like image 756
Nicholas Key Avatar asked Dec 21 '09 20:12

Nicholas Key


2 Answers

It basically enables filtering for the contents of the given ListView. However, the caveat, as explained here is that the filtering doesn't happen automatically. According to that link, you have to provide the filtering logic and then according to the AbsListView docs that outline that method, the adapter you call that method on must also implement Filterable.

Hope that helps...

like image 85
Chris Thompson Avatar answered Sep 16 '22 18:09

Chris Thompson


According to the Android Developer Reference, the setTextFilterEnabled() method "enables or disables the type filter window. If enabled, typing when this view has focus will filter the children to match the users input."

Source and extra information can be found at the Android Developer Reference, ie : http://developer.android.com/reference/android/widget/AbsListView.html#setTextFilterEnabled%28boolean%29

like image 35
CharlieP Avatar answered Sep 19 '22 18:09

CharlieP