Android: Reduce space between columns in GridView

前端 未结 7 2011
情深已故
情深已故 2021-02-04 05:14

See attached screenshot where I am attempting to reduce the space between the columns in my GridView.

My main.xml is as follows:



        
7条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-04 05:37

    try to fix the number of columns needed in xml file for grid and set stretchMode as columnwidth

    android:numColumns="3"
    android:columnWidth="60dp"
    android:stretchMode="columnWidth"
    

    or set the horizontal and vertical spacing in xml for grid

    android:verticalSpacing="10dp"
    android:horizontalSpacing="10dp"
    

提交回复
热议问题