project_files/Android-build/SDL-android-project/res/layout/download_progress.xml
branchhedgeroid
changeset 6350 41b0a9955c47
child 6433 c8e4b3f29e1e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/project_files/Android-build/SDL-android-project/res/layout/download_progress.xml	Thu Nov 24 13:44:30 2011 +0100
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+	android:id="@+id/container"
+    android:layout_width="wrap_content"
+    android:layout_height="wrap_content"
+    android:padding="5dp"
+    android:background="@drawable/box">
+    <ProgressBar
+    	android:id="@+id/progressbar"
+    	android:layout_width="wrap_content"
+    	android:layout_height="wrap_content"
+    	android:layout_alignLeft="@+id/background"
+    	android:layout_alignRight="@+id/cancelDownload"
+    	android:progressDrawable="@android:drawable/progress_horizontal"
+		android:indeterminate="false" 
+		android:indeterminateOnly="false"/>
+	<TextView
+    	android:id="@+id/progressbar_sub"
+    	android:layout_width="wrap_content"
+    	android:layout_height="wrap_content"
+    	android:layout_below="@id/progressbar"
+    	android:layout_alignLeft="@+id/background"
+    	android:layout_alignRight="@+id/cancelDownload"
+    	android:text="@string/download_queued"
+    	android:textColor="#FFF"
+    	android:textSize="14dp"
+    	android:gravity="center"/> 	
+    <Button
+    	android:id="@id/background"
+    	android:layout_width="wrap_content"
+    	android:layout_height="wrap_content"
+    	android:layout_below="@id/progressbar_sub"
+    	android:text="@string/download_background"/>
+    <Button
+    	android:id="@+id/cancelDownload"
+    	android:layout_width="wrap_content"
+    	android:layout_height="wrap_content"
+    	android:layout_below="@id/progressbar_sub"
+    	android:layout_toRightOf="@id/background"
+    	android:text="@string/download_cancel"/>
+    	
+</RelativeLayout>
+