Android: what does “setTextFilterEnabled” method do?

后端 未结 3 1574
时光说笑
时光说笑 2020-12-30 01:15

What does the setTextFilterEnabled() method do?

相关标签:
3条回答
  • 2020-12-30 01:26

    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...

    0 讨论(0)
  • 2020-12-30 01:26

    It is used for filtering the contents of the given ListView .when you type a letter then you will be automatically scrolled to that item if it is there in that view .

    0 讨论(0)
  • 2020-12-30 01:45

    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

    0 讨论(0)
提交回复
热议问题