summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/onlinefeedview_header.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/onlinefeedview_header.xml')
-rw-r--r--app/src/main/res/layout/onlinefeedview_header.xml55
1 files changed, 28 insertions, 27 deletions
diff --git a/app/src/main/res/layout/onlinefeedview_header.xml b/app/src/main/res/layout/onlinefeedview_header.xml
index aa690e142..6d740c772 100644
--- a/app/src/main/res/layout/onlinefeedview_header.xml
+++ b/app/src/main/res/layout/onlinefeedview_header.xml
@@ -1,35 +1,36 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:orientation="vertical"
+ 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:orientation="vertical"
+ android:paddingLeft="20dp"
+ android:paddingRight="20dp"
+ android:layout_marginBottom="8dp">
+
+ <TextView
+ android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_width="match_parent">
+ android:layout_marginBottom="8dp"
+ android:text="@string/description_label"
+ style="@style/TextAppearance.Material3.TitleMedium" />
<TextView
- android:id="@+id/txtvDescription"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="16dp"
- android:layout_marginLeft="16dp"
- android:layout_marginStart="16dp"
- android:layout_marginRight="16dp"
- android:layout_marginEnd="16dp"
- android:ellipsize="end"
- android:textColor="?android:attr/textColorSecondary"
- android:textSize="@dimen/text_size_small"
- tools:text="@string/design_time_lorem_ipsum"
- tools:background="@android:color/holo_green_dark"/>
+ android:id="@+id/txtvDescription"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="16dp"
+ android:ellipsize="end"
+ android:lineHeight="20dp"
+ style="@style/AntennaPod.TextView.ListItemBody"
+ tools:text="@string/design_time_lorem_ipsum" />
<TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="16dp"
- android:layout_marginLeft="16dp"
- android:layout_marginStart="16dp"
- android:layout_marginRight="16dp"
- android:layout_marginEnd="16dp"
- android:textSize="@dimen/text_size_medium"
- android:text="@string/episodes_label"/>
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="16dp"
+ android:text="@string/episodes_label"
+ style="@style/TextAppearance.Material3.TitleMedium" />
-</LinearLayout> \ No newline at end of file
+</LinearLayout>