summaryrefslogtreecommitdiffstats
path: root/tests/StatusBar/res/layout/button_notification.xml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/StatusBar/res/layout/button_notification.xml')
-rw-r--r--tests/StatusBar/res/layout/button_notification.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/StatusBar/res/layout/button_notification.xml b/tests/StatusBar/res/layout/button_notification.xml
new file mode 100644
index 0000000..822e8cd
--- /dev/null
+++ b/tests/StatusBar/res/layout/button_notification.xml
@@ -0,0 +1,21 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="80sp"
+ android:orientation="horizontal"
+ >
+
+ <ImageView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:src="@drawable/icon1"
+ />
+
+ <Button android:id="@+id/button"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="button"
+ />
+
+</LinearLayout>
+