Force RecyclerView to redraw its items

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

    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

提交回复
热议问题