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
The below lines of code did the trick for me
recyclerview.swapAdapter(myAdapter,false);
recyclerview.setLayoutManager(myLayoutManager);
myAdapter.notifyDataSetChanged();
Force RecyclerView to onCreateViewHolder or redraw its items #Kotlin
This worked for me
Resetting the Adapter worked for me, I called this inside onConfigChange
myRecyclerView.setAdapter(myAdapter)