1 <?xml version="1.0" encoding="utf-8"?> 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="fill_parent" 4 android:layout_height="fill_parent" 5 android:background="#ffffff"> 6 <RelativeLayout android:id="@+id/header_gradient" 7 android:background="@drawable/header_gradient" 8 android:layout_alignParentTop="true" 9 android:layout_height="125dip" 10 android:layout_width="fill_parent" /> 11 <RelativeLayout android:id="@+id/footer_gradient" 12 android:background="@drawable/footer_gradient" 13 android:layout_alignParentBottom="true" 14 android:layout_height="30dip" 15 android:layout_width="fill_parent" /> 16 <LinearLayout android:id="@+id/center_container" 17 android:layout_width="fill_parent" 18 android:layout_height="wrap_content" 19 android:orientation="vertical" 20 android:layout_centerInParent="true"> 21 <ImageView android:id="@+id/deqp_icon" 22 android:src="@drawable/deqp_app" 23 android:layout_width="fill_parent" 24 android:layout_height="wrap_content" 25 android:gravity="center_horizontal" 26 android:scaleType="fitCenter" /> 27 <TextView android:id="@+id/status_text" 28 style="@style/StatusText" 29 android:gravity="center_horizontal" 30 android:text="Starting..." /> 31 </LinearLayout> 32 </RelativeLayout> 33