summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/res/layout-xlarge/status_bar_notification_row.xml
blob: 6b12d29c3fe1ffbecc1c0e0b97153d284adb523f (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
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="65dp"
    android:background="@drawable/status_bar_item_background"
    >

    <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="#ff000000"
        android:paddingRight="8dp"
        />

    <ImageView
        android:id="@+id/large_icon"
        android:layout_width="@dimen/notification_large_icon_width"
        android:layout_height="@dimen/notification_large_icon_height"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:scaleType="center"
        />
        <!-- TODO: scaleType should be top-left but ImageView doesn't support that. -->

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

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

</RelativeLayout>