I would like to place two images in the respective image views so they occupy the entire screen. So far I have only gotten here :( (To add the device being tested I use an S3)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/white"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:onClick="onClick"
android:src="@drawable/up" />
<ImageView
android:id="@+id/blue"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:src="@drawable/blue"
android:onClick="onClick"
android:layout_below="@id/white"/>
</RelativeLayout>
The images are 1080 X 1920 and scaled to screen. The problem is either the image below is scaled improperly or they dont connect properly. I have a black area on the top and bottom
I am sorry but the Images are not of the same size.