2012-12-31 32 views
5

我的gridview中的圖像不是拉伸。在gridview中製作彈力圖像查看

我該如何拉伸它?

這是我的。

enter image description here

這就是我想要的

enter image description here

的GridView

<ScrollView 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" > 

     <LinearLayout 
      android:id="@+id/layout2" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:background="@drawable/bg_base" 
      android:orientation="vertical" > 

      <com.camitss.mcolle.ScrollableGridView 
       android:id="@+id/grid_all" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:columnWidth="110dp" 
       android:gravity="center" 
       android:horizontalSpacing="10dp" 
       android:numColumns="auto_fit" 
       android:padding="5dp" 
       android:verticalSpacing="10dp" /> 
     </LinearLayout> 
    </LinearLayout> 
</ScrollView> 

GridView的項目

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:background="@drawable/card_base" 
android:orientation="vertical" > 

<!-- Green Image --> 
<ImageView 
    android:id="@+id/category_card" 
    android:layout_width="105dp" 
    android:layout_height="105dp" 
    android:layout_centerInParent="true" /> 

<!-- Picture --> 
<ImageView 
    android:id="@+id/imageView1" 
    android:layout_width="95dp" 
    android:layout_height="95dp" 
    android:layout_centerInParent="true" /> 

+0

集圖像長度和高度=填寫父母,而不是 「xxdp」 – swiftBoy

+0

實在不行。我已經測試過了。 :D – kongkea

+0

讓我試試吧!只是分享源圖像 – swiftBoy

回答

6

試試這個

<!-- Picture --> 

    <ImageView 
     android:id="@+id/imageView1" 
     android:layout_width="95dp" 
     android:layout_height="95dp" 
     android:layout_centerInParent="true" 
     android:scaleType="fitXY" 
     android:adjustViewBounds="true" /> 
+0

感謝您的幫助我Appu – kongkea

+0

您一如既往歡迎kongkea。 – Kanth