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
Take a look at this answer: https://stackoverflow.com/a/33342314/4142087
Shortly, you can create different types of view holders, changing view type will force RecyclerView to pass another ViewHolder to the onBindViewHolder.
If you use setTheme, you have to recreate whole Activity like this: https://stackoverflow.com/a/14367214/4142087