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