summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/searchlist_item_feed.xml
diff options
context:
space:
mode:
authorH. Lehmann <ByteHamster@users.noreply.github.com>2020-03-17 15:41:24 +0100
committerGitHub <noreply@github.com>2020-03-17 15:41:24 +0100
commit54056dd8d95fe88d1a582c55e066778ce25eff50 (patch)
tree17eddd45c779ccb01c34e43dab06d0bd046e949d /app/src/main/res/layout/searchlist_item_feed.xml
parent4e0e4baa056509536f34078bf15031d8c0c97053 (diff)
parent6066fef1f2a3f3b8d5c5d946c750d356429e75a8 (diff)
downloadAntennaPod-54056dd8d95fe88d1a582c55e066778ce25eff50.zip
Merge pull request #3937 from ByteHamster/recyclerview
Converted lists to RecyclerView
Diffstat (limited to 'app/src/main/res/layout/searchlist_item_feed.xml')
-rw-r--r--app/src/main/res/layout/searchlist_item_feed.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/src/main/res/layout/searchlist_item_feed.xml b/app/src/main/res/layout/searchlist_item_feed.xml
new file mode 100644
index 000000000..f5e76801e
--- /dev/null
+++ b/app/src/main/res/layout/searchlist_item_feed.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:squareImageView="http://schemas.android.com/apk/de.danoeh.antennapod"
+ android:layout_width="match_parent"
+ android:layout_height="96dp"
+ android:padding="4dp"
+ android:clipToPadding="false">
+
+ <de.danoeh.antennapod.view.SquareImageView
+ android:id="@+id/discovery_cover"
+ android:layout_width="match_parent"
+ android:layout_height="96dp"
+ android:elevation="4dp"
+ android:outlineProvider="bounds"
+ android:foreground="?android:attr/selectableItemBackground"
+ squareImageView:direction="height" />
+
+</LinearLayout>
+