RecyclerView laggy scrolling

后端 未结 13 810
闹比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:18

    This could be because of Picasso taking time to load the image. Use the below snapshot and adjust accordingly.

    Picasso.with (context)
                        .load (url).fit().centerCrop()
                        .error (R.drawable.UserImage)         
                        .into (imageView);
    

    Use fit() and centerCrop() to avoid legginess.

提交回复
热议问题