aboutsummaryrefslogtreecommitdiff
path: root/subsonic-android/res/layout/artist_list_item.xml
blob: 3684e176a6f36e8dd13d91d45deeb6a1b19ff330 (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
<?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="@android:color/transparent">
		
	<TextView
		android:id="@+id/artist_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:background="@android:color/transparent"/>
		
	<ImageButton
		android:id="@+id/artist_star"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_gravity="right|center_vertical"
		android:src="@drawable/ic_stat_star"
		android:background="@android:color/transparent"
		android:focusable="false"/>

    <ImageView
		android:id="@+id/artist_more"
		android:src="@drawable/list_item_more"
		android:layout_width="wrap_content"
		android:layout_height="fill_parent"
		android:layout_gravity="right|center_vertical"
		android:paddingRight="6dip"
		android:background="@drawable/menubar_button"/>
</LinearLayout>