aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/notification_expanded.xml
blob: a1586214d39a2c28ef863800cbbe3d429738210a (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/statusbar"
    android:layout_width="fill_parent"
    android:layout_height="128dp"
    android:orientation="horizontal" >
		
	<ImageView
	    android:id="@+id/notification_image"
	    android:layout_width="128dp"
	    android:layout_height="128dp"
	    android:gravity="center" />

	<LinearLayout
	    android:layout_width="fill_parent"
	    android:layout_height="fill_parent"
	    android:layout_weight="0.0"
	    android:orientation="vertical"
	    android:paddingLeft="11.0dip" >

		<LinearLayout
			android:layout_width="fill_parent"
			android:layout_height="wrap_content"
			android:orientation="horizontal">

			<TextView
				android:id="@+id/notification_title"
				style="@style/NotificationText.Title"
				android:layout_width="0dp"
				android:layout_height="wrap_content"
				android:layout_weight="1"
				android:layout_gravity="left|center_vertical"
				android:ellipsize="marquee"
				android:focusable="true"
				android:singleLine="true" />

			<ImageButton
				android:id="@+id/notification_close"
				android:layout_width="wrap_content"
				android:layout_height="wrap_content"
				android:src="@drawable/notification_close"
				style="@style/NotificationButton"
				android:layout_gravity="right"
				android:visibility="invisible"/>
		</LinearLayout>

	    <TextView
	        android:id="@+id/notification_artist"
	        style="@style/NotificationText.Content"
	        android:layout_width="wrap_content"
	        android:layout_height="wrap_content"
	        android:layout_gravity="left"
	        android:ellipsize="end"
	        android:scrollHorizontally="true"
	        android:singleLine="true" />

	    <TextView
	        android:id="@+id/notification_album"
	        style="@style/NotificationText.Content"
	        android:layout_width="wrap_content"
	        android:layout_height="wrap_content"
	        android:layout_gravity="left"
	        android:ellipsize="end"
	        android:scrollHorizontally="true"
	        android:singleLine="true"
			android:paddingBottom="10dp"/>

		<ImageView
			style="@style/NotificationDivider"
			android:layout_width="fill_parent"
			android:layout_height="1dp"/>
	    
	    <LinearLayout
	        android:layout_width="fill_parent"
	        android:layout_height="fill_parent"
			android:layout_weight="1"
	        android:orientation="horizontal"
			android:showDividers="middle"
			style="@style/NotificationLayoutDivider">

	        <ImageButton
	            android:id="@+id/control_previous"
	            style="@style/NotificationButton.Expanded"
	            android:src="@drawable/notification_backward" />

	        <ImageButton
	            android:id="@+id/control_pause"
				style="@style/NotificationButton.Expanded"
	            android:src="@drawable/notification_pause" />

	        <ImageButton
	            android:id="@+id/control_next"
				style="@style/NotificationButton.Expanded"
	            android:src="@drawable/notification_forward" />
	    </LinearLayout>
	</LinearLayout>

</LinearLayout>