RecyclerView laggy scrolling

后端 未结 13 778
闹比i
闹比i 2020-12-09 09:44

I am loading 400x200 images in RecyclerView, but scrolling is laggy on 2k devices. I am using Picasso for loading images from resource.

As you can see in the demo ima

13条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-09 10:32

    You need to be getting the images asynchronously. As it is now, it stalls to actually download the image.

    Leave the imageview blank when it's created, but have some sort of listener to set the image when it's been downloaded.

提交回复
热议问题