I have a WebView
in my RecyclerView
, whenever I call RecyclerView.notifyDataSetChanged
the WebView
will have a short flashing.
I don't want any changes happen on the WebView
, how can I do this ?
I know I can solve this with using notifyItemXXX
instead of notifyDataSetChanged
. But I do need notifyDataSetChanged
method.