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
The below lines of code did the trick for me
recyclerview.swapAdapter(myAdapter,false); recyclerview.setLayoutManager(myLayoutManager); myAdapter.notifyDataSetChanged();