Android: Reduce space between columns in GridView

前端 未结 7 1962
情深已故
情深已故 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:32

    I had the same problem. I minimized column space by doing this

    for gridView

    android:numColumns="2"
    android:columnWidth="90dp"
    android:verticalSpacing="0dp"
    android:horizontalSpacing="-30dp"
    android:stretchMode="columnWidth"
    

    for imageView

    android:layout_width="115dp"
    android:layout_height="150dp"
    android:padding="1dp"
    android:layout_marginLeft="30dp"
    android:layout_marginRight="-15dp"
    

提交回复
热议问题