我有一个滚动视图,显示一些位图图像视图以填充屏幕。为了支持更大的屏幕,我只想缩放图像。如果我在滚动视图中放置单个图像视图,它会缩放到适合(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。
答案 0 :(得分:1)
android:scaleType="scaleXY"
在您的imageview中