aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/playlist_cell_item.xml
blob: 7e6ab0cd53dbba3a7abdeb86a113f085b75b1098 (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:orientation="vertical"
	android:layout_width="match_parent"
	android:layout_height="match_parent"
	android:background="?attr/selectableItemBackground">

	<github.daneren2005.dsub.view.SquareImageView
		android:id="@+id/playlist_coverart"
		android:layout_width="match_parent"
		android:layout_height="match_parent"/>

	<LinearLayout
		android:layout_width="match_parent"
		android:layout_height="wrap_content"
		android:orientation="horizontal"
		android:paddingTop="4dp"
		android:paddingLeft="2dp">

		<TextView
			android:id="@+id/playlist_title"
			android:layout_width="0dp"
			android:layout_height="wrap_content"
			android:layout_weight="1"
			android:textAppearance="?android:attr/textAppearanceMedium"
			android:singleLine="true"
			android:ellipsize="marquee"
			android:textColor="?android:textColorPrimary"/>

		<ImageView
			android:id="@+id/more_button"
			android:src="?attr/download_none"
			android:layout_width="wrap_content"
			android:layout_height="wrap_content"
			android:layout_gravity="right|center_vertical"
			android:paddingRight="2dp"
			style="@style/BasicButton"/>
	</LinearLayout>
</LinearLayout>