2014-06-13 80 views
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)); 

這裏是它的外觀: enter image description here

+0

你有一個自定義的佈局來顯示圖像?起初我錯誤地認爲它是一個交錯的griview。 – Raghunandan

+0

@Raghunandan問題已更新 –

回答

0
Try This Code :- 

    <GridView 
      android:id="@+id/gridView1" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:layout_margin="4dp" 
      android:columnWidth="90dp" 
      android:gravity="center" 
      android:numColumns="auto_fit" 
      android:stretchMode="columnWidth" > 
     </GridView> 


and customGridAdapter xml view:- 


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_margin="20dp" 
    android:background="@drawable/grid_border" 
    android:orientation="vertical" 
    android:padding="5dp" > 

    <ImageView 
     android:id="@+id/item_image" 
     android:layout_width="75dp" 
     android:layout_height="75dp" 
     android:layout_gravity="center" 
     android:layout_margin="10dp" 
     android:scaleType="fitXY" 
     android:src="@drawable/home" > 
    </ImageView> 

</LinearLayout> 

在LinearLayout中的Android此圖片使用:背景= 「@繪製/ grid_border」

enter image description here