blob: f8279672efff7149a4d8844b1709324ae8db1d54 [file] [log] [blame]
Chris Wren51c75102013-07-16 20:49:17 -04001<com.android.systemui.statusbar.ExpandableNotificationRow
2 xmlns:android="http://schemas.android.com/apk/res/android"
Daniel Sandler7bff7e62010-08-06 15:06:18 -04003 android:layout_width="match_parent"
Daniel Sandler6a858c32012-03-12 14:38:58 -04004 android:layout_height="wrap_content"
Daniel Sandler7bff7e62010-08-06 15:06:18 -04005 >
6
Chris Wren80a76272012-04-18 10:52:18 -04007 <View
8 android:id="@+id/top_glow"
9 android:alpha="0"
Romain Guy8900e632012-05-25 12:08:39 -070010 android:visibility="invisible"
Chris Wren80a76272012-04-18 10:52:18 -040011 android:layout_width="match_parent"
12 android:layout_height="@dimen/notification_divider_height"
13 android:layout_gravity="top|center_horizontal"
14 android:background="@drawable/top_divider_glow"
15 />
16
Daniel Sandler1347c302011-08-01 16:47:53 -040017 <Button
Daniel Sandlerb48e74b2011-05-04 10:57:05 -040018 android:id="@+id/veto"
19 android:layout_width="48dp"
20 android:layout_height="match_parent"
Fabrice Di Meglio8afcd142012-07-27 18:27:11 -070021 android:gravity="end"
22 android:layout_marginEnd="-80dp"
Daniel Sandlerb48e74b2011-05-04 10:57:05 -040023 android:background="@null"
Fabrice Di Meglio02c40c22013-03-08 14:05:28 -080024 android:paddingEnd="8dp"
25 android:paddingStart="8dp"
Daniel Sandlerb48e74b2011-05-04 10:57:05 -040026 />
27
Daniel Sandler7bff7e62010-08-06 15:06:18 -040028 <com.android.systemui.statusbar.LatestItemView android:id="@+id/content"
Daniel Sandlerb48e74b2011-05-04 10:57:05 -040029 android:layout_width="match_parent"
Daniel Sandlerf3b73432012-03-27 15:01:25 -040030 android:layout_height="wrap_content"
31 android:layout_marginBottom="@dimen/notification_divider_height"
Chris Wren80a76272012-04-18 10:52:18 -040032 android:layout_marginTop="@dimen/notification_divider_height"
Daniel Sandlerb48e74b2011-05-04 10:57:05 -040033 android:focusable="true"
34 android:clickable="true"
Daniel Sandler6a858c32012-03-12 14:38:58 -040035 >
36
37 <com.android.internal.widget.SizeAdaptiveLayout android:id="@+id/adaptive"
Daniel Sandler6a858c32012-03-12 14:38:58 -040038 android:layout_width="match_parent"
39 android:layout_height="wrap_content" />
40
41 </com.android.systemui.statusbar.LatestItemView>
Daniel Sandler7bff7e62010-08-06 15:06:18 -040042
43 <View
Chris Wren80a76272012-04-18 10:52:18 -040044 android:id="@+id/bottom_glow"
45 android:alpha="0"
Romain Guy8900e632012-05-25 12:08:39 -070046 android:visibility="invisible"
Daniel Sandler7bff7e62010-08-06 15:06:18 -040047 android:layout_width="match_parent"
Peter Ng6ccd7a52011-08-22 16:58:43 -070048 android:layout_height="@dimen/notification_divider_height"
Chris Wren80a76272012-04-18 10:52:18 -040049 android:layout_gravity="bottom|center_horizontal"
50 android:background="@drawable/bottom_divider_glow"
Daniel Sandler7bff7e62010-08-06 15:06:18 -040051 />
52
Daniel Sandlerb9301c32012-08-14 15:08:24 -040053 <TextView
54 android:id="@+id/debug_info"
55 android:visibility="invisible"
56 android:layout_width="wrap_content"
57 android:layout_height="wrap_content"
Fabrice Di Meglio8afcd142012-07-27 18:27:11 -070058 android:layout_gravity="bottom|end"
Daniel Sandlerb9301c32012-08-14 15:08:24 -040059 android:fontFamily="sans-serif-condensed"
60 android:textSize="9dp"
61 android:textStyle="bold"
62 android:textColor="#00A040"
63 android:padding="2dp"
64 />
65
Chris Wren51c75102013-07-16 20:49:17 -040066</com.android.systemui.statusbar.ExpandableNotificationRow>