Audinaut-subsonic-app-android/app/src/main/res/layout/basic_art_item.xml

35 lines
1.3 KiB
XML
Raw Normal View History

2016-12-18 18:41:30 +01:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-03-24 20:25:12 +01:00
android:layout_width="fill_parent"
android:layout_height="wrap_content"
2018-03-25 03:28:28 +02:00
android:background="?attr/selectableItemBackground"
android:orientation="horizontal">
2016-12-18 18:41:30 +01:00
2018-03-24 20:25:12 +01:00
<net.nullsum.audinaut.view.RecyclingImageView
android:id="@+id/item_art"
android:layout_width="@dimen/AlbumArt.Small"
android:layout_height="@dimen/AlbumArt.Small"
2018-03-25 03:28:28 +02:00
android:layout_gravity="left|center_vertical" />
2016-12-18 18:41:30 +01:00
2018-03-24 20:25:12 +01:00
<TextView
android:id="@+id/item_name"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_gravity="left|center_vertical"
2018-03-25 03:28:28 +02:00
android:layout_weight="1"
android:ellipsize="marquee"
2018-03-24 20:25:12 +01:00
android:paddingLeft="10dip"
android:paddingRight="3dip"
2018-03-25 03:28:28 +02:00
android:singleLine="true"
2018-03-24 20:25:12 +01:00
android:textAppearance="?android:attr/textAppearanceMedium"
2018-03-25 03:28:28 +02:00
android:textColor="?android:textColorPrimary" />
2016-12-18 18:41:30 +01:00
2018-03-24 20:25:12 +01:00
<ImageView
android:id="@+id/item_more"
2018-03-25 03:28:28 +02:00
style="@style/MoreButton"
2018-03-24 20:25:12 +01:00
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right|center_vertical"
2018-03-25 03:28:28 +02:00
android:src="?attr/download_none" />
2016-12-18 18:41:30 +01:00
</LinearLayout>