aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/basic_cell_item.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2015-10-27 17:47:39 -0700
committerScott Jackson <daneren2005@gmail.com>2015-10-27 17:47:39 -0700
commitd9c624ad2396beb5a489193311f7275dfba2da48 (patch)
tree32ac19dae8e9056a92b904a9bb4fff6828120822 /app/src/main/res/layout/basic_cell_item.xml
parente1df606624d9a18fde6ecb33c0647c2939a9b508 (diff)
downloaddsub-d9c624ad2396beb5a489193311f7275dfba2da48.tar.gz
dsub-d9c624ad2396beb5a489193311f7275dfba2da48.tar.bz2
dsub-d9c624ad2396beb5a489193311f7275dfba2da48.zip
#508 Add podcast cover art for Subsonic 5.3+
Diffstat (limited to 'app/src/main/res/layout/basic_cell_item.xml')
-rw-r--r--app/src/main/res/layout/basic_cell_item.xml39
1 files changed, 39 insertions, 0 deletions
diff --git a/app/src/main/res/layout/basic_cell_item.xml b/app/src/main/res/layout/basic_cell_item.xml
new file mode 100644
index 00000000..f522b196
--- /dev/null
+++ b/app/src/main/res/layout/basic_cell_item.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="?attr/selectableItemBackground">
+
+ <github.daneren2005.dsub.view.SquareImageView
+ android:id="@+id/item_art"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"/>
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:paddingTop="4dp"
+ android:paddingLeft="2dp">
+
+ <TextView
+ android:id="@+id/item_name"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:singleLine="true"
+ 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="wrap_content"
+ android:layout_gravity="right|center_vertical"
+ android:paddingRight="2dp"
+ style="@style/BasicButton"/>
+ </LinearLayout>
+</LinearLayout> \ No newline at end of file