summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/cover_fragment.xml
blob: 31e7dbda7501a5c66faac32a63b1b8c49a2c4ab7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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: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:direction="minimum" />

    <TextView
        android:id="@+id/txtvPodcastTitle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ellipsize="end"
        android:gravity="center"
        android:maxLines="2"
        android:layout_marginTop="16dp"
        android:textColor="?android:attr/textColorSecondary"
        android:textIsSelectable="true"
        tools:text="Podcast" />

    <TextView
        android:id="@+id/txtvEpisodeTitle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        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>