aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout-land/download.xml
blob: 9a4dcade25fec495a9751847d081950e6bba2af2 (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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:id="@+id/download_layout"
	android:orientation="horizontal"
	android:layout_width="match_parent"
	android:layout_height="match_parent">

	<ViewFlipper
		android:id="@+id/download_playlist_flipper"
		android:layout_width="match_parent"
		android:layout_height="match_parent"
		android:layout_weight="1">

		<github.daneren2005.dsub.view.CardView
			android:layout_width="wrap_content"
			android:layout_height="wrap_content"
			android:layout_gravity="center"
			android:layout_margin="14dp">

			<github.daneren2005.dsub.view.RecyclingImageView
				android:id="@+id/download_album_art_image"
				android:src="@drawable/unknown_album_large"
				android:layout_width="wrap_content"
				android:layout_height="match_parent"
				android:layout_weight="1"
				android:adjustViewBounds="true"
				android:scaleType="fitCenter"/>

		</github.daneren2005.dsub.view.CardView>

		<include layout="@layout/download_playlist"/>

	</ViewFlipper>

	<RelativeLayout
		android:id="@+id/download_control_layout"
		android:layout_width="match_parent"
		android:layout_height="match_parent"
		android:layout_weight="1"
		android:background="@android:color/transparent">

		<LinearLayout
			android:id="@+id/download_other_controls_wrapper"
			android:layout_width="wrap_content"
			android:layout_height="wrap_content"
			android:layout_centerHorizontal="true"
			android:layout_above="@+id/download_status">

			<LinearLayout
				android:id="@+id/download_other_controls_layout"
				android:orientation="horizontal"
				android:layout_width="wrap_content"
				android:layout_height="wrap_content"
				android:layout_gravity="center_horizontal">

				<ImageButton
					android:id="@+id/download_rating_bad"
					style="@style/DownloadActionImageButton"
					android:src="?attr/rating_bad"/>

				<ImageButton
					android:id="@+id/download_star"
					style="@style/DownloadActionImageButton"
					android:src="@android:drawable/star_big_off"/>

				<ImageButton
					android:id="@+id/download_playback_speed"
					style="@style/DownloadActionImageButton"
					android:src="?attr/playback_speed"/>

				<ImageButton
					android:id="@+id/download_bookmark"
					style="@style/DownloadActionImageButton"
					android:src="?attr/bookmark"/>

				<ImageButton
					android:id="@+id/download_rating_good"
					style="@style/DownloadActionImageButton"
					android:src="?attr/rating_good"/>
			</LinearLayout>
		</LinearLayout>

		<TextView
				android:id="@+id/download_song_title"
				android:layout_width="fill_parent"
				android:layout_height="wrap_content"
				android:layout_centerHorizontal="true"
				android:layout_marginLeft="12dip"
				android:layout_marginRight="12dip"
				android:singleLine="true"
				android:ellipsize="end"
				android:gravity="center_horizontal"
				android:textAppearance="?android:attr/textAppearanceMedium"
				android:textColor="?android:textColorPrimary"
				android:layout_above="@+id/download_slider_wrapper"/>

		<TextView
				android:id="@+id/download_status"
				android:layout_width="fill_parent"
				android:layout_height="wrap_content"
				android:gravity="center_horizontal"
				android:layout_marginBottom="8dip"
				android:layout_marginLeft="12dip"
				android:layout_marginRight="12dip"
				android:singleLine="true"
				android:ellipsize="end"
				android:textAppearance="?android:attr/textAppearanceSmall"
				android:textColor="?android:textColorSecondary"
				android:layout_above="@+id/download_song_title"/>

		<LinearLayout
			android:id="@+id/download_media_buttons_wrapper"
			android:layout_width="fill_parent"
			android:layout_height="wrap_content"
			android:layout_alignParentBottom="true">

			<include layout="@layout/download_media_buttons"/>
		</LinearLayout>

		<LinearLayout
			android:id="@+id/download_slider_wrapper"
			android:layout_width="fill_parent"
			android:layout_height="wrap_content"
			android:layout_above="@+id/download_media_buttons_wrapper">

			<include layout="@layout/download_slider"/>
		</LinearLayout>

	</RelativeLayout>

</LinearLayout>