I have a problem when I use Relative Layout and a background. Although I set \[code\]android:layout_height="match_parent"\[/code\], the background is not filling all the screen (height of screen) and the bottom part is setting white. I am only putting items at the top part of the screen, but even so I don't believe that this behaviour is correct.My code xml:\[code\]<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"androidrientation="vertical"android:background="@drawable/background" ><TextView android:id="@+id/title" android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="@string/title" android:layout_centerHorizontal="true" android:layout_marginTop="@dimen/dim_b" android:layout_marginLeft="@dimen/dim_a" android:layout_marginRight="@dimen/dim_a" /><EditText android:id="@+id/insert" android:hint="@string/insert" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@id/title" android:layout_centerHorizontal="true" android:layout_marginTop="@dimen/dim_c" android:layout_marginLeft="@dimen/dim_a" android:layout_marginRight="@dimen/dim_a" android:inputType="textPassword" /><Button android:id="@+id/accept" android:text="@string/accept" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/insert" android:layout_centerHorizontal="true" android:layout_marginTop="@dimen/dim_d" android:layout_marginLeft="@dimen/dim_a" android:layout_marginRight="@dimen/dim_a" /></RelativeLayout>\[/code\]