Force RecyclerView to redraw its items

后端 未结 9 1189
闹比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:20

    The only solution that worked for me on an Amazon Fire HD was this:

    recyclerView.setAdapter(null);
    recyclerView.setLayoutManager(null);
    recyclerView.getRecycledViewPool().clear();
    recyclerView.swapAdapter(myAdapter, false);
    recyclerView.setLayoutManager(layoutManager);
    myAdapter.notifyDataSetChanged();
    

    Hope it helps!

提交回复
热议问题