summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/feeditemlist_header.xml
blob: 14ba6c3d06c0c62a0d423eeae90f6baa974d3a7a (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
        xmlns:tools="http://schemas.android.com/tools"
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:padding="16dp"
            android:layout_marginBottom="16dp"
            android:gravity="center_vertical">

        <ImageView
                android:id="@+id/imgvCover"
                android:layout_width="100dp"
                android:layout_height="100dp"
                android:layout_marginRight="16dp"
                android:layout_marginEnd="16dp"
                android:contentDescription="@string/cover_label"
                tools:src="@drawable/ic_antenna"
                tools:background="@android:color/holo_green_dark"/>


        <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">
            <TextView
                    android:id="@+id/txtvTitle"
                    style="@style/AntennaPod.TextView.Heading"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:ellipsize="end"
                    android:maxLines="2"
                    android:shadowColor="@color/black"
                    android:shadowRadius="2"
                    android:textColor="@color/white"
                    tools:text="Podcast title"
                    tools:background="@android:color/holo_green_dark"/>

            <TextView
                    android:id="@+id/txtvAuthor"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:ellipsize="end"
                    android:maxLines="2"
                    android:shadowColor="@color/black"
                    android:shadowRadius="2"
                    android:textColor="@color/white"
                    android:textSize="@dimen/text_size_small"
                    tools:text="Podcast author"
                    tools:background="@android:color/holo_green_dark"/>

            <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="horizontal">
                <ImageButton
                        android:id="@+id/butShowInfo"
                        android:layout_width="40dp"
                        android:layout_height="40dp"
                        android:background="?attr/selectableItemBackground"
                        android:contentDescription="@string/show_info_label"
                        app:srcCompat="@drawable/ic_info_white"
                        tools:background="@android:color/holo_green_dark"
                        android:layout_marginLeft="-8dp"
                        android:layout_marginStart="-8dp"
                        android:scaleType="fitXY"
                        android:visibility="invisible"
                        tools:visibility="visible"
                        android:padding="8dp"/>

                <ImageButton
                        android:id="@+id/butShowSettings"
                        android:layout_width="40dp"
                        android:layout_height="40dp"
                        android:background="?attr/selectableItemBackground"
                        android:contentDescription="@string/show_feed_settings_label"
                        app:srcCompat="@drawable/ic_settings_white"
                        tools:background="@android:color/holo_green_dark"
                        android:scaleType="fitXY"
                        android:visibility="invisible"
                        tools:visibility="visible"
                        android:padding="8dp"/>
            </LinearLayout>

        </LinearLayout>

    </LinearLayout>

    <TextView
            android:id="@+id/txtvInformation"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="2dp"
            android:background="?attr/colorPrimary"
            android:visibility="gone"
            android:gravity="center"
            tools:visibility="visible"
            tools:text="(i) Information"/>

    <com.joanzapata.iconify.widget.IconTextView
            android:id="@+id/txtvFailure"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="2dp"
            android:background="@color/download_failed_red"
            android:gravity="center"
            android:textColor="@color/white"
            android:visibility="gone"
            android:text="@string/refresh_failed_msg"
            tools:visibility="visible"
            tools:text="(!) Last refresh failed"/>
</LinearLayout>