mirror of
https://gitea.mayex.net/mayekkuzu/Audinaut.git
synced 2025-02-20 22:45:14 +03:00
35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<?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">
|
|
|
|
<net.nullsum.audinaut.view.RecyclingImageView
|
|
android:id="@+id/item_art"
|
|
android:layout_width="@dimen/AlbumArt.Small"
|
|
android:layout_height="@dimen/AlbumArt.Small"
|
|
android:layout_gravity="left|center_vertical"/>
|
|
|
|
<TextView
|
|
android:id="@+id/item_name"
|
|
android:layout_width="0dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_gravity="left|center_vertical"
|
|
android:paddingLeft="10dip"
|
|
android:paddingRight="3dip"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:maxLines="1"
|
|
android:ellipsize="marquee"
|
|
android:textColor="?android:textColorPrimary"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/item_more"
|
|
android:src="?attr/download_none"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:layout_gravity="right|center_vertical"
|
|
style="@style/MoreButton"/>
|
|
</LinearLayout>
|