RecyclerView Recycled ViewHolder Image View wrong size

后端 未结 5 1095
眼角桃花
眼角桃花 2020-12-31 14:54

I have a recycler view with different View Holders.

A couple of view holders have image views which I pass into Glide to display images.

The problem is, when

5条回答
  •  温柔的废话
    2020-12-31 15:30

    Add this line

    android:adjustViewBounds="true"
    

    to the imageview in layout file it will automatically resize image view.

    in glide change .crossFade() to .fitCenter()

提交回复
热议问题