--- a/res/layout/progress_dialog.xml Tue Sep 25 21:39:45 2012 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-<?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>