0

我有一个滚动视图,它显示一些位图图像视图来填充屏幕。为了支持更大的屏幕,我只想缩放图像。如果我在滚动视图中放置一个图像视图,它会缩放以适应(fill_parent)。但是,在下面添加第二个图像视图会导致图像视图恢复为实际大小,并且不会被放大以填充屏幕。

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/menu_ground"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:src="@drawable/picture1" />

    <ImageView
        android:id="@+id/ImageView2"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:src="@drawable/picture2" />

    <ImageView
        android:id="@+id/ImageView3"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:src="@drawable/picture3" />

    <ImageView
        android:id="@+id/ImageView3"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:src="@drawable/picture4" />
</LinearLayout>

图像位于“drawable”文件夹中,没有 dpi。

4

1 回答 1

1
 android:scaleType="scaleXY"

在您的图像视图中

于 2013-04-30T00:31:02.270 回答