--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/res/layout/progress_dialog.xml Sat Sep 22 03:21:58 2012 +0200
@@ -0,0 +1,21 @@
+<?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>