Recyclerview painfully slow to load cached images form Picasso

前端 未结 9 1225
夕颜
夕颜 2020-11-30 23:31

I have implemented a RecyclerView that contains mainly images which is loading in through Picasso. My problem is that as soon as I scroll down or up the view, the placeholde

9条回答
  •  [愿得一人]
    2020-12-01 00:05

    Setting recyclerView parameters as below solved my stutter problem :

    recyclerView.setHasFixedSize(true);
    recyclerView.setItemViewCacheSize(20);
    recyclerView.setDrawingCacheEnabled(true);
    recyclerView.setDrawingCacheQuality(View.DRAWING_CACHE_QUALITY_HIGH);
    

    i hope it helps someone else too.

提交回复
热议问题