Force RecyclerView to redraw its items

后端 未结 9 1161
闹比i
闹比i 2021-02-02 06:45

Is there any way to redraw all items of RecyclerView?

I have some Themes (in style.xml) and after changing the theme, I need the RecyclerView t

9条回答
  •  执笔经年
    2021-02-02 07:17

    I found the answer! The correct way to do this is:

    recyclerView.setAdapter(null);
    recyclerView.setLayoutManager(null);
    recyclerView.setAdapter(myAdapter);
    recyclerView.setLayoutManager(myLayoutManager);
    myAdapter.notifyDataSetChanged();
    

    After that, all the items are getting the new style!

提交回复
热议问题