2013-04-07 04:14:26 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:a="http://schemas.android.com/apk/res/android"
|
|
|
|
a:layout_width="fill_parent"
|
|
|
|
a:layout_height="wrap_content" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
a:id="@+id/select_album_art"
|
|
|
|
a:layout_width="120dip"
|
|
|
|
a:layout_height="120dip"
|
|
|
|
a:layout_alignParentLeft="true"
|
|
|
|
a:layout_alignParentTop="true"
|
|
|
|
a:layout_marginRight="10dip"
|
|
|
|
a:contentDescription="@null"
|
|
|
|
a:scaleType="fitCenter"
|
|
|
|
a:src="@drawable/unknown_album_large" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
a:id="@+id/select_album_title"
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:layout_toRightOf="@+id/select_album_art"
|
|
|
|
a:ellipsize="end"
|
|
|
|
a:paddingRight="4dip"
|
|
|
|
a:paddingTop="10dip"
|
|
|
|
a:singleLine="true"
|
2013-04-28 01:01:34 +02:00
|
|
|
a:textAppearance="?android:attr/textAppearanceMedium" />
|
2013-04-07 04:14:26 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
a:id="@+id/select_album_artist"
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:layout_below="@+id/select_album_title"
|
|
|
|
a:layout_toRightOf="@+id/select_album_art"
|
|
|
|
a:ellipsize="end"
|
|
|
|
a:paddingRight="4dip"
|
|
|
|
a:singleLine="true"
|
|
|
|
a:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
a:id="@+id/select_album_genre"
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:layout_below="@+id/select_album_artist"
|
|
|
|
a:layout_toRightOf="@+id/select_album_art"
|
|
|
|
a:ellipsize="end"
|
|
|
|
a:paddingRight="4dip"
|
|
|
|
a:singleLine="true"
|
|
|
|
a:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
a:id="@+id/select_album_song_count"
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:layout_below="@+id/select_album_genre"
|
|
|
|
a:layout_toRightOf="@+id/select_album_art"
|
|
|
|
a:ellipsize="none"
|
|
|
|
a:paddingRight="4dip"
|
|
|
|
a:singleLine="true"
|
|
|
|
a:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
a:id="@+id/select_album_duration"
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:layout_below="@+id/select_album_song_count"
|
|
|
|
a:layout_toRightOf="@+id/select_album_art"
|
|
|
|
a:ellipsize="none"
|
|
|
|
a:paddingRight="4dip"
|
|
|
|
a:singleLine="true"
|
|
|
|
a:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|