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

	<TextView
		android:id="@+id/genre_name"
		android:layout_width="0dip"
		android:layout_height="wrap_content"
		android:layout_weight="1"
		android:textAppearance="?android:attr/textAppearanceMedium"
		android:gravity="left|center_vertical"
		android:paddingLeft="6dip"
		android:paddingRight="6dip"
		android:minHeight="50dip"
		android:singleLine="true"
		android:ellipsize="marquee"
		android:background="@android:color/transparent"
		android:textColor="?android:textColorPrimary"/>

	<LinearLayout
		android:layout_width="wrap_content"
		android:layout_height="fill_parent"
		android:orientation="vertical"
		android:gravity="right|center_vertical"
		android:paddingRight="10dip"
		android:background="@android:color/transparent">

		<TextView
			android:id="@+id/genre_songs"
			android:layout_width="wrap_content"
			android:layout_height="wrap_content"
			android:textAppearance="?android:attr/textAppearanceSmall"
			android:textColor="?android:textColorSecondary"/>

		<TextView
			android:id="@+id/genre_albums"
			android:layout_width="wrap_content"
			android:layout_height="wrap_content"
			android:textAppearance="?android:attr/textAppearanceSmall"
			android:textColor="?android:textColorSecondary"/>
	</LinearLayout>
</LinearLayout>