I've a scrollview that displays a few bitmap imageviews to fill the screen. To support larger screens, I just want to scale the images. If I place a single imageview in the scrollview, it scales to fit (fill_parent). However, adding a second imageview underneath causes the imageviews to revert to actual size and not be upscaled to fill the screen.
<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>
The images are located in the "drawable" folder, no dpi.