summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/cover_fragment.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/cover_fragment.xml')
-rw-r--r--app/src/main/res/layout/cover_fragment.xml33
1 files changed, 19 insertions, 14 deletions
diff --git a/app/src/main/res/layout/cover_fragment.xml b/app/src/main/res/layout/cover_fragment.xml
index 8e0ec3679..4292344fd 100644
--- a/app/src/main/res/layout/cover_fragment.xml
+++ b/app/src/main/res/layout/cover_fragment.xml
@@ -1,44 +1,49 @@
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
- android:padding="8dp">
+ android:padding="8dp"
+ android:gravity="center">
+
+ <de.danoeh.antennapod.view.SquareImageView
+ android:id="@+id/imgvCover"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1"
+ android:contentDescription="@string/cover_label"
+ android:scaleType="fitCenter"
+ android:layout_marginLeft="32dp"
+ android:layout_marginRight="32dp"
+ android:transitionName="coverTransition"
+ tools:src="@android:drawable/sym_def_app_icon"
+ android:foreground="?attr/selectableItemBackgroundBorderless"
+ squareImageView:useMinimum="true" />
<TextView
android:id="@+id/txtvPodcastTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_weight="0.25"
android:ellipsize="end"
android:gravity="center"
android:maxLines="2"
+ android:layout_marginTop="16dp"
android:textColor="?android:attr/textColorSecondary"
android:textIsSelectable="true"
tools:text="Podcast" />
- <ImageView
- android:id="@+id/imgvCover"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="0.5"
- android:contentDescription="@string/cover_label"
- android:scaleType="fitCenter"
- android:transitionName="coverTransition"
- tools:src="@android:drawable/sym_def_app_icon"
- android:foreground="?attr/selectableItemBackground" />
-
<TextView
android:id="@+id/txtvEpisodeTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_weight="0.25"
android:ellipsize="end"
android:gravity="center"
android:maxLines="2"
android:textColor="?android:attr/textColorPrimary"
android:textIsSelectable="true"
+ android:layout_marginBottom="8dp"
tools:text="Episode" />
</LinearLayout>