RecyclerView change data set

前端 未结 5 2058
一个人的身影
一个人的身影 2020-12-07 11:33

I want to implement search functionality for my RecyclerView. On text changed i want to change the data that are displayed with this widget. Maybe this question has been ask

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-07 11:51

    If you want to change the complete Adapter in the recycler view. you can just simply set by recycler.setAdapter(myAdapter); It will automatically remove the old adapter from recycler view and replace it with your new adapter.

提交回复
热议问题