Is there any way to redraw all items of RecyclerView?
RecyclerView
I have some Themes (in style.xml) and after changing the theme, I need the RecyclerView t
If you want to force redraw, you need clear View Pool of RecycleView. You can use recyclerView.getRecycledViewPool().clear();
RecycleView
recyclerView.getRecycledViewPool().clear();