summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/feeditemlist_header.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/feeditemlist_header.xml')
-rw-r--r--app/src/main/res/layout/feeditemlist_header.xml31
1 files changed, 25 insertions, 6 deletions
diff --git a/app/src/main/res/layout/feeditemlist_header.xml b/app/src/main/res/layout/feeditemlist_header.xml
index fc38c6797..4619580e3 100644
--- a/app/src/main/res/layout/feeditemlist_header.xml
+++ b/app/src/main/res/layout/feeditemlist_header.xml
@@ -4,7 +4,14 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="@dimen/feeditemlist_header_height"
- tools:context="de.danoeh.antennapod.activity.MainActivity">
+ tools:context="de.danoeh.antennapod.activity.MainActivity"
+ tools:background="@android:color/darker_gray">
+
+ <ImageView
+ android:id="@+id/imgvBackground"
+ style="@style/BigBlurryBackground"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" />
<ImageView
android:id="@+id/imgvCover"
@@ -16,7 +23,9 @@
android:layout_marginBottom="16dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="16dp"
- android:contentDescription="@string/cover_label" />
+ android:contentDescription="@string/cover_label"
+ tools:src="@drawable/ic_stat_antenna_default"
+ tools:background="@android:color/holo_green_dark"/>
<ImageButton
android:id="@+id/butShowInfo"
@@ -29,7 +38,8 @@
android:layout_marginTop="8dp"
android:background="?attr/selectableItemBackground"
android:contentDescription="@string/show_info_label"
- android:src="?attr/action_about" />
+ android:src="@drawable/ic_info_white_24dp"
+ tools:background="@android:color/holo_green_dark"/>
<TextView
android:id="@+id/txtvTitle"
@@ -43,7 +53,12 @@
android:layout_toLeftOf="@id/butShowInfo"
android:layout_toRightOf="@id/imgvCover"
android:ellipsize="end"
- android:maxLines="2" />
+ android:maxLines="2"
+ android:shadowColor="@color/black"
+ android:shadowRadius="3"
+ android:textColor="@color/white"
+ tools:text="Podcast title"
+ tools:background="@android:color/holo_green_dark" />
<TextView
android:id="@+id/txtvAuthor"
@@ -56,8 +71,12 @@
android:layout_toRightOf="@id/imgvCover"
android:ellipsize="end"
android:lines="1"
- android:textColor="?android:attr/textColorSecondary"
- android:textSize="@dimen/text_size_small" />
+ android:shadowColor="@color/black"
+ android:shadowRadius="3"
+ android:textColor="@color/white"
+ android:textSize="@dimen/text_size_small"
+ tools:text="Podcast author"
+ tools:background="@android:color/holo_green_dark" />
</RelativeLayout> \ No newline at end of file