blob: 8f5883bf618cf856364f1ada94770b6117111fde (
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
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/select_album_header"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/select_album_art"
android:src="@drawable/unknown_album_large"
android:layout_width="@dimen/AlbumArt.Header"
android:layout_height="@dimen/AlbumArt.Header"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_marginRight="10dip"
android:scaleType="fitCenter"
android:contentDescription="@null"/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/select_album_art"
android:orientation="vertical"
android:layout_centerVertical="true">
<TextView
android:text="This is the album title"
android:id="@+id/select_album_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textStyle="bold"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true">
<requestFocus android:focusable="true"
android:focusableInTouchMode="true"
android:duplicateParentState="true" />
</TextView>
<TextView
android:text="This is the artist name"
android:id="@+id/select_album_artist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:singleLine="true"
android:ellipsize="end"/>
<TextView
android:text="XX SONGS"
android:id="@+id/select_album_song_count"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="14dip"
android:textAppearance="?android:attr/textAppearanceSmall"
android:singleLine="true"
android:ellipsize="none"/>
<TextView
android:text="0:00"
android:id="@+id/select_album_song_length"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:singleLine="true"
android:ellipsize="none"/>
</LinearLayout>
<ImageView
android:id="@+id/select_album_share"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:scaleType="fitCenter"
android:src="?attr/share"
android:padding="10dip"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:background="@drawable/menubar_button"/>
</RelativeLayout>
|