summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/new_episodes_listitem.xml
diff options
context:
space:
mode:
authorMartin Fietz <Martin.Fietz@gmail.com>2015-11-10 18:24:06 +0100
committerMartin Fietz <Martin.Fietz@gmail.com>2015-11-27 15:31:52 +0100
commitc5c457bbf07fc50a96233aadd9d7e3076d64aed8 (patch)
tree23d4c119327bdaae655c62ff78bd6e94fd5a1a26 /app/src/main/res/layout/new_episodes_listitem.xml
parent69038b4ff5fad16407ef7401202539113746dcf9 (diff)
downloadAntennaPod-c5c457bbf07fc50a96233aadd9d7e3076d64aed8.zip
Highlight currently playing episode
Diffstat (limited to 'app/src/main/res/layout/new_episodes_listitem.xml')
-rw-r--r--app/src/main/res/layout/new_episodes_listitem.xml14
1 files changed, 11 insertions, 3 deletions
diff --git a/app/src/main/res/layout/new_episodes_listitem.xml b/app/src/main/res/layout/new_episodes_listitem.xml
index 7a5652c45..e55274aca 100644
--- a/app/src/main/res/layout/new_episodes_listitem.xml
+++ b/app/src/main/res/layout/new_episodes_listitem.xml
@@ -1,11 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<FrameLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:background="?attr/selectableItemBackground">
+
+<LinearLayout
+ android:id="@+id/container"
+ android:layout_width="match_parent"
android:layout_height="@dimen/listitem_threeline_height"
android:orientation="horizontal"
- android:background="?attr/selectableItemBackground"
tools:background="@android:color/darker_gray">
<RelativeLayout
@@ -127,4 +133,6 @@
<include layout="@layout/secondary_action" />
-</LinearLayout> \ No newline at end of file
+</LinearLayout>
+
+</FrameLayout>