aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/abstract_fragment_activity.xml
blob: 3aa6374f14bcce48feab2b76cb906c367fc3a70a (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
<com.sothree.slidinguppanel.SlidingUpPanelLayout
	xmlns:android="http://schemas.android.com/apk/res/android"
	xmlns:sothree="http://schemas.android.com/apk/res-auto"
	android:id="@+id/slide_up_panel"
	android:layout_width="match_parent"
	android:layout_height="match_parent"
	android:gravity="bottom"
	sothree:umanoPanelHeight="?attr/actionBarSize"
	sothree:umanoShadowHeight="4dp"
	sothree:umanoDragView="@+id/slide_up_swipe_target">

	<FrameLayout
		android:layout_width="match_parent"
		android:layout_height="match_parent">

		<android.support.v7.widget.Toolbar
			android:id="@+id/main_toolbar"
			style="?attr/actionBarStyle"
			android:layout_height="?attr/actionBarSize"
			android:layout_width="match_parent"/>

		<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
					 android:id="@+id/fragment_container"
					 android:layout_width="match_parent"
					 android:layout_height="match_parent"
					 android:layout_marginTop="?attr/actionBarSize"/>
	</FrameLayout>

	<LinearLayout
		android:layout_width="match_parent"
		android:layout_height="match_parent"
		android:orientation="vertical">

		<FrameLayout
			android:id="@+id/slide_up_swipe_target"
			android:layout_width="match_parent"
			android:layout_height="wrap_content">

			<android.support.v7.widget.Toolbar
				android:id="@+id/now_playing_toolbar"
				style="?attr/actionBarStyle"
				android:layout_height="?attr/actionBarSize"
				android:layout_width="match_parent"
				android:visibility="gone"/>

			<LinearLayout
				android:id="@+id/bottom_bar"
				android:layout_width="fill_parent"
				android:layout_height="wrap_content"
				style="@style/BasicButton"
				android:orientation="horizontal">

				<github.daneren2005.dsub.view.RecyclingImageView
					android:id="@+id/album_art"
					android:layout_width="?attr/actionBarSize"
					android:layout_height="?attr/actionBarSize"
					android:layout_gravity="left|center"
					android:scaleType="fitStart"/>

				<LinearLayout
					android:layout_width="0dp"
					android:layout_height="wrap_content"
					android:layout_gravity="center_vertical"
					android:layout_weight="1"
					android:orientation="vertical"
					android:paddingLeft="8dip">

					<TextView
						android:id="@+id/track_name"
						android:layout_height="wrap_content"
						android:layout_width="wrap_content"
						android:textColor="?android:textColorPrimary"
						android:singleLine="true"
						android:textAppearance="?android:attr/textAppearanceSmall"
						android:textSize="13sp"
						android:text="@string/search.artists"/>

					<TextView
						android:id="@+id/artist_name"
						android:layout_height="wrap_content"
						android:layout_width="wrap_content"
						android:textColor="?android:textColorSecondary"
						android:singleLine="true"
						android:textAppearance="?android:attr/textAppearanceSmall"
						android:textSize="12sp"
						android:text="@string/search.albums"/>
				</LinearLayout>


				<LinearLayout
					android:layout_height="fill_parent"
					android:layout_width="0dp"
					android:layout_weight="1">

					<ImageButton
						style="@style/PlaybackControl.Match"
						android:id="@+id/download_previous"
						android:src="?attr/media_button_backward"
						android:layout_width="0dp"
						android:layout_weight="1"/>

					<ImageButton
						style="@style/PlaybackControl.Match"
						android:id="@+id/download_start"
						android:src="?attr/media_button_start"
						android:layout_width="0dp"
						android:layout_weight="1"/>

					<ImageButton
						style="@style/PlaybackControl.Match"
						android:id="@+id/download_next"
						android:src="?attr/media_button_forward"
						android:layout_width="0dp"
						android:layout_weight="1"/>
				</LinearLayout>
			</LinearLayout>
		</FrameLayout>

		<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
					 android:id="@+id/now_playing_fragment_container"
					 android:layout_width="match_parent"
					 android:layout_height="0dp"
					 android:layout_weight="1"/>
	</LinearLayout>
</com.sothree.slidinguppanel.SlidingUpPanelLayout>