• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<com.android.systemui.statusbar.ExpandableNotificationRow
2    xmlns:android="http://schemas.android.com/apk/res/android"
3    android:layout_width="match_parent"
4    android:layout_height="wrap_content"
5    >
6
7    <View
8        android:id="@+id/top_glow"
9        android:alpha="0"
10        android:visibility="invisible"
11        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
17    <Button
18        android:id="@+id/veto"
19        android:layout_width="48dp"
20        android:layout_height="match_parent"
21        android:gravity="end"
22        android:layout_marginEnd="-80dp"
23        android:background="@null"
24        android:paddingEnd="8dp"
25        android:paddingStart="8dp"
26        />
27
28    <com.android.systemui.statusbar.LatestItemView android:id="@+id/content"
29        android:layout_width="match_parent"
30        android:layout_height="wrap_content"
31        android:layout_marginBottom="@dimen/notification_divider_height"
32        android:layout_marginTop="@dimen/notification_divider_height"
33        android:focusable="true"
34        android:clickable="true"
35        >
36
37        <com.android.internal.widget.SizeAdaptiveLayout android:id="@+id/adaptive"
38           android:layout_width="match_parent"
39           android:layout_height="wrap_content" />
40
41    </com.android.systemui.statusbar.LatestItemView>
42
43    <View
44        android:id="@+id/bottom_glow"
45        android:alpha="0"
46        android:visibility="invisible"
47        android:layout_width="match_parent"
48        android:layout_height="@dimen/notification_divider_height"
49        android:layout_gravity="bottom|center_horizontal"
50        android:background="@drawable/bottom_divider_glow"
51        />
52
53    <TextView
54        android:id="@+id/debug_info"
55        android:visibility="invisible"
56        android:layout_width="wrap_content"
57        android:layout_height="wrap_content"
58        android:layout_gravity="bottom|end"
59        android:fontFamily="sans-serif-condensed"
60        android:textSize="9dp"
61        android:textStyle="bold"
62        android:textColor="#00A040"
63        android:padding="2dp"
64        />
65
66</com.android.systemui.statusbar.ExpandableNotificationRow>
67