RecyclerView change data set

前端 未结 5 2071
一个人的身影
一个人的身影 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

    Just re-initialize your adapter:

    mAdapter = new ItemsAdapter(newItemsData);
    

    or if you only need to remove add a few specific items rather than a whole list:

    mAdapter.notifyItemInserted(position);
    

    or

    mAdapter.notifyItemRemoved(position);
    

提交回复
热议问题