summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/res/layout-sw600dp/status_bar_notification_row.xml
blob: 93085d7d4f8406e9d0df2a14d6c83ce8894f92d8 (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
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="@dimen/notification_height"
    >

    <ImageButton
        android:id="@+id/veto"
        android:layout_width="48dp"
        android:layout_height="match_parent"
        android:layout_centerVertical="true"
        android:layout_alignParentRight="true"
        android:src="@drawable/status_bar_veto"
        android:scaleType="center"
        android:background="@null"
        android:paddingRight="8dp"
        android:paddingLeft="8dp"
        />

    <ImageView
        android:id="@+id/large_icon"
        android:layout_width="@android:dimen/notification_large_icon_width"
        android:layout_height="@android:dimen/notification_large_icon_height"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:scaleType="center"
        />

    <com.android.systemui.statusbar.LatestItemView android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="64dp"
        android:layout_alignParentTop="true"
        android:layout_toRightOf="@id/large_icon"
        android:layout_toLeftOf="@id/veto"
        android:focusable="true"
        android:clickable="true"
        />

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:layout_alignParentBottom="true"
        android:background="@android:drawable/divider_horizontal_dark"
        />

</RelativeLayout>