0
我有一個網格視圖,兩行之間有空格。我試圖刪除空白區但沒有成功。那麼有誰能告訴我如何去除白色間距?GridView行間距填滿屏幕
這裏是我的xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:orientation="vertical" >
<GridView
android:id="@+id/bg_chooser_grid"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:numColumns="auto_fit"/>
</LinearLayout>
這裏的GridItem XML:
<?xml version="1.0" encoding="utf-8"?>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/grid_item_img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/app_name"
android:scaleType="centerInside"
android:src="@drawable/ic_launcher" />
的 「適配器的重要組成部分」:
gridImg = (ImageView) vi.findViewById(R.id.grid_item_img);
gridImg.setImageResource(data.get(position));
這裏是它的外觀:
你有一個自定義的佈局來顯示圖像?起初我錯誤地認爲它是一個交錯的griview。 – Raghunandan
@Raghunandan問題已更新 –