res/layout/progress_dialog.xml
author Da Risk <da_risk@beem-project.com>
Sat, 22 Sep 2012 03:21:58 +0200
changeset 986 2c85a0f62ab0
permissions -rw-r--r--
Rework the account wizard using fragments.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:layout_width="wrap_content" android:layout_height="wrap_content"
	>
	<TextView android:id="@+id/title" 
	    android:layout_width="fill_parent" android:layout_height="wrap_content" 
	    android:layout_alignParentTop="true"
	    android:text="TITLE" />
	<View android:id="@+id/separator" android:layout_width="match_parent" android:layout_height="4dp"/>
	
	<ProgressBar android:id="@+id/progress" 
	    android:layout_width="wrap_content" android:layout_height="wrap_content"
	    android:layout_below="@+id/separator"
	    android:layout_alignParentLeft="true" 
	    android:indeterminateOnly="true" android:indeterminate="true" android:indeterminateBehavior="repeat"/>
	<TextView android:id="@+id/message"
	    android:layout_width="wrap_content" android:layout_height="wrap_content"
	    android:layout_below="@+id/separator"
	    android:layout_toRightOf="@id/progress" 
	    android:text="TITLECONTENT"/>
</RelativeLayout>