Android RecyclerView Child设置为正方形

对于使用GridLayoutManager的Recyclerview来说,想要将item设置为正方形,最简单的办法是使用ConstraintLayout

类似这样:



    

就可以了
关键是ConstraintLayout的这个属性:

app:layout_constraintDimensionRatio

可以用来设置child的宽高比

你可能感兴趣的:(Android RecyclerView Child设置为正方形)