blob: dd701663848db4c36fa453c54d4bdd56bce99218 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<View
android:id="@+id/top_glow"
android:alpha="0"
android:visibility="invisible"
android:layout_width="match_parent"
android:layout_height="@dimen/notification_divider_height"
android:layout_gravity="top|center_horizontal"
android:background="@drawable/top_divider_glow"
/>
<Button
android:id="@+id/veto"
android:layout_width="48dp"
android:layout_height="match_parent"
android:gravity="right"
android:layout_marginRight="-80dp"
android:background="@null"
android:paddingRight="8dp"
android:paddingLeft="8dp"
/>
<com.android.systemui.statusbar.LatestItemView android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/notification_divider_height"
android:layout_marginTop="@dimen/notification_divider_height"
android:focusable="true"
android:clickable="true"
>
<com.android.internal.widget.SizeAdaptiveLayout android:id="@+id/adaptive"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</com.android.systemui.statusbar.LatestItemView>
<View
android:id="@+id/bottom_glow"
android:alpha="0"
android:visibility="invisible"
android:layout_width="match_parent"
android:layout_height="@dimen/notification_divider_height"
android:layout_gravity="bottom|center_horizontal"
android:background="@drawable/bottom_divider_glow"
/>
</FrameLayout>
|