aboutsummaryrefslogtreecommitdiff
path: root/NotificationShowcase/res/layout
diff options
context:
space:
mode:
authorDaniel Sandler <dsandler@android.com>2012-03-08 14:04:14 -0500
committerDaniel Sandler <dsandler@android.com>2012-03-08 14:06:01 -0500
commitff467b19db77e65f7e4014a9b6a7c3bfb55b71dd (patch)
tree949f984db36d6b12796e590f420b2d6f036133fc /NotificationShowcase/res/layout
parented4f0d59a890e11c89c9f21720a81560ce8cbaae (diff)
downloadexperimental-ff467b19db77e65f7e4014a9b6a7c3bfb55b71dd.tar.gz
Test app that generates a lot of notifications.
As seen in the ICS launch! Change-Id: I7a0e7845439b7ed145fe35979ac3ec0f8ab316c2
Diffstat (limited to 'NotificationShowcase/res/layout')
-rw-r--r--NotificationShowcase/res/layout/main.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/NotificationShowcase/res/layout/main.xml b/NotificationShowcase/res/layout/main.xml
new file mode 100644
index 0000000..f5a740f
--- /dev/null
+++ b/NotificationShowcase/res/layout/main.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ >
+ <LinearLayout android:id="@+id/linearLayout1" android:orientation="vertical" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_width="match_parent" android:layout_margin="35dp">
+ <Button android:id="@+id/button1" android:text="@string/post_button_label" android:layout_height="wrap_content" android:layout_width="match_parent" android:onClick="doPost"></Button>
+ <Button android:id="@+id/button2" android:text="@string/remove_button_label" android:layout_height="wrap_content" android:layout_width="match_parent" android:onClick="doRemove"></Button>
+ </LinearLayout>
+</FrameLayout>