出於某種原因,我不明白,還有我的網格行之間的間距,同時我已清楚設置垂直間距爲0。我想在我的兩個電網的XML,並在圖像的XML不同的寬度和高度設置打(網格組件)。GridView的高度間距
這是我有:
,這就是我想要的:
你可以看到網格XML和下面的圖片XML:
網格:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<GridView
android:id="@+id/gridView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:columnWidth="144dp"
android:horizontalSpacing="0dp"
android:verticalSpacing="0dp"
android:numColumns="auto_fit"
android:stretchMode="spacingWidthUniform" >
</GridView>
</RelativeLayout>
圖像:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
</RelativeLayout>
哇。這樣一個簡單的答案,我一直在尋找小時-_-; 非常感謝:D – Billakosama