在scrollview里面的ImageView(Android)

时间:2015-06-15 09:01:39

标签: android xml

我似乎无法将imageView设置为填满按钮的整个空间(视图)。我有一个白色空间作为背景的按钮。

请查看我的样本

enter image description here

我的代码:

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="bottom" >

            <ScrollView
                android:id="@+id/scroll"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent">

                <RelativeLayout
                    android:id="@+id/relativeLayout1"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" >

                     <ImageView
                 android:id="@+id/imageView21"
                 android:layout_width="match_parent"
                 android:layout_height="match_parent"
                 android:scaleType="centerCrop"
                 android:src="@drawable/bg_shkaf" />

                    </RelativeLayout>

    </ScrollView>
</RelativeLayout>

1 个答案:

答案 0 :(得分:1)

使用android:fillViewport="true"滚动查看并将ImageView比例类型更改为android:scaleType="fitXY"

<RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="bottom" >

                <ScrollView
                    android:id="@+id/scroll"
                    android:fillViewport="true"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent">

                    <RelativeLayout
                        android:id="@+id/relativeLayout1"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent" >

                         <ImageView
                     android:id="@+id/imageView21"
                     android:layout_width="match_parent"
                     android:layout_height="match_parent"
                     android:scaleType="fitXY"
                     android:src="@drawable/bg_shkaf" />

                        </RelativeLayout>



        </ScrollView>
    </RelativeLayout>