0

一連の画像を GridView に表示したい (サイズは同じ)。GirdView と GirdView Item のレイアウトの下..問題は、画像の高さが引き伸ばされることです。なぜ ?

GridView レイアウト:

<GridView
    android:id="@+id/gvRecipes"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/include1"
    android:layout_margin="0dp"
    android:background="@drawable/bg"
    android:gravity="right"
    android:horizontalSpacing="10dp"
    android:padding="0dp"
    android:verticalSpacing="5dp" >
</GridView> 

GridView アイテムは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/include21"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_margin="10dp"
    android:background="@drawable/btn"
    android:padding="5dp" >

    <ImageView
        android:id="@+id/imgRecibeImage"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scaleType="fitXY"

        android:src="@drawable/img1" />

    <TextView
        android:id="@+id/txtRecibeName"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_gravity="bottom"
        android:background="#80000000"
        android:gravity="right"
        android:padding="5dp"
        android:text="Crispy Chicken and Sandwich"
        android:textColor="#ffffff"
        android:textSize="17sp" />

</FrameLayout>
4

1 に答える 1

1

あなたが使用したスケールタイプでfitXY

fitXY:これは、不均衡なスケーリングがグラフィックに影響を与えない場合にのみ使用する必要があります。ビットマップグラフィックスの場合、これはほとんどの場合使用に適していません。これにより、ソース画像のアスペクト比を維持せずに、ソース画像の幅をビューの幅に設定し、ソース画像の高さをビューの高さに設定します。

これで、layoutとのimageview幅がmatch_parentになり、画像は親ビューの全幅で表示されますが、高さの場合は、すべての画像のwrap_contentimageView調整します。actual height

于 2012-09-17T05:14:02.683 に答える