status_bar_notification_row.xml revision 80a76276dc9440ffad30dc4c820eb7d65f4df368
1<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2    android:layout_width="match_parent"
3    android:layout_height="wrap_content"
4    android:background="@*android:drawable/notification_bg"
5    >
6
7    <View
8        android:id="@+id/top_glow"
9        android:alpha="0"
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="right"
21        android:layout_marginRight="-80dp"
22        android:background="@null"
23        android:paddingRight="8dp"
24        android:paddingLeft="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:background="@*android:drawable/notification_bg"
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: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</FrameLayout>
53