]> Joshua Wise's Git repositories - dumload.git/blobdiff - res/layout/progressnotif.xml
Add a progress bar.
[dumload.git] / res / layout / progressnotif.xml
diff --git a/res/layout/progressnotif.xml b/res/layout/progressnotif.xml
new file mode 100644 (file)
index 0000000..d742e57
--- /dev/null
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:orientation="horizontal"
+    android:layout_width="fill_parent"
+    android:layout_height="fill_parent"
+    android:padding="3dp"
+    >
+
+<ImageView
+    android:id="@+id/image"
+    android:layout_width="wrap_content"
+    android:layout_height="fill_parent"
+    android:layout_marginRight="10dp"
+    />
+
+<LinearLayout
+    android:orientation="vertical"
+    android:layout_width="fill_parent"
+    android:layout_height="wrap_content"
+    >
+<TextView  
+    android:id="@+id/headline"
+    android:layout_width="fill_parent" 
+    android:layout_height="wrap_content" 
+    android:textStyle="bold"
+    />
+<ProgressBar
+    android:id="@+id/status"
+    android:layout_width="fill_parent" 
+    android:layout_height="wrap_content" 
+    style="?android:attr/progressBarStyleHorizontal"
+    />
+
+</LinearLayout>
+</LinearLayout>
This page took 0.022091 seconds and 4 git commands to generate.