Center elements in GridView

前端 未结 9 1295
挽巷
挽巷 2020-12-29 19:44

I have GridView with 6 images in 2 columns. I want to display this 6 images in the middle of the screen. I set gravity properties to center but this center elements only hor

9条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-29 20:40

    Need to set the following attributes:

    android:stretchMode="columnWidth"
    

    ...and...

    android:gravity="center"
    

提交回复
热议问题