summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDaniel Sandler <dsandler@google.com>2010-11-30 16:17:28 -0500
committerDaniel Sandler <dsandler@google.com>2010-11-30 16:17:28 -0500
commit1bfddc8d15f74607e6e3a63a6d5335ba42337167 (patch)
tree277a14d212d39674b60cfd53fd2a3a10343a12dd /tests
parent373a9983742b3d2370c36183aca3cde4614e6185 (diff)
downloadframeworks_base-1bfddc8d15f74607e6e3a63a6d5335ba42337167.zip
frameworks_base-1bfddc8d15f74607e6e3a63a6d5335ba42337167.tar.gz
frameworks_base-1bfddc8d15f74607e6e3a63a6d5335ba42337167.tar.bz2
Fix build.
Change-Id: Iccbe1609bbe582180d1c61f908b8dce4d485494b
Diffstat (limited to 'tests')
-rw-r--r--tests/StatusBar/res/layout/progress_notification.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/StatusBar/res/layout/progress_notification.xml b/tests/StatusBar/res/layout/progress_notification.xml
new file mode 100644
index 0000000..5ab5d1e
--- /dev/null
+++ b/tests/StatusBar/res/layout/progress_notification.xml
@@ -0,0 +1,22 @@
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content">
+
+ <ProgressBar
+ android:id="@+id/progress_bar"
+ style="?android:attr/progressBarStyleHorizontal"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:max="100" />
+
+ <TextView
+ android:id="@+id/status_text"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:maxLines="1"
+ android:paddingTop="1dip"
+ android:textAppearance="?android:attr/textAppearanceSmall" />
+
+</LinearLayout>