<?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:background="#ffffff">
	<RelativeLayout android:id="@+id/header_gradient"
					android:background="@drawable/header_gradient"
					android:layout_alignParentTop="true"
					android:layout_height="125dip"
					android:layout_width="fill_parent" />
	<RelativeLayout android:id="@+id/footer_gradient"
					android:background="@drawable/footer_gradient"
					android:layout_alignParentBottom="true"
					android:layout_height="30dip"
					android:layout_width="fill_parent" />
	<LinearLayout android:id="@+id/center_container"
				  android:layout_width="fill_parent"
				  android:layout_height="wrap_content"
				  android:orientation="vertical"
				  android:layout_centerInParent="true">
		<ImageView android:id="@+id/deqp_icon"
				   android:src="@drawable/deqp_app"
				   android:layout_width="fill_parent"
				   android:layout_height="wrap_content"
				   android:gravity="center_horizontal"
				   android:scaleType="fitCenter" />
		<TextView android:id="@+id/status_text"
				  style="@style/StatusText"
				  android:gravity="center_horizontal"
				  android:text="Starting..." />
	</LinearLayout>
</RelativeLayout>
