summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/home_section_echo.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/home_section_echo.xml')
-rw-r--r--app/src/main/res/layout/home_section_echo.xml91
1 files changed, 91 insertions, 0 deletions
diff --git a/app/src/main/res/layout/home_section_echo.xml b/app/src/main/res/layout/home_section_echo.xml
new file mode 100644
index 000000000..f5fdaa46f
--- /dev/null
+++ b/app/src/main/res/layout/home_section_echo.xml
@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout
+ 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"
+ android:paddingHorizontal="16dp">
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal">
+
+ <TextView
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:textColor="?android:attr/textColorPrimary"
+ android:textSize="18sp"
+ android:layout_marginVertical="8dp"
+ android:accessibilityHeading="true"
+ android:layout_weight="1"
+ android:text="@string/echo_home_header" />
+
+ <ImageView
+ android:id="@+id/closeButton"
+ android:layout_width="48dp"
+ android:layout_height="48dp"
+ android:padding="16dp"
+ android:background="?attr/selectableItemBackgroundBorderless"
+ android:contentDescription="@string/close_label"
+ android:layout_gravity="center_vertical"
+ android:src="@drawable/ic_cancel" />
+
+ </LinearLayout>
+
+ <androidx.cardview.widget.CardView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center"
+ android:orientation="vertical"
+ app:cardCornerRadius="8dp"
+ app:cardElevation="0dp">
+
+ <LinearLayout
+ android:id="@+id/echoButton"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:background="@drawable/bg_blue_gradient"
+ android:orientation="vertical"
+ android:padding="16dp"
+ android:foreground="?attr/selectableItemBackground">
+
+ <TextView
+ android:id="@+id/titleLabel"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="8dp"
+ android:textColor="#fff"
+ android:text="@string/antennapod_echo_year"
+ android:textFontWeight="500"
+ style="@style/TextAppearance.Material3.TitleLarge" />
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal">
+
+ <TextView
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:textColor="#fff"
+ android:layout_weight="1"
+ android:text="@string/echo_home_subtitle"
+ style="@style/TextAppearance.Material3.BodyMedium" />
+
+ <ImageView
+ android:layout_width="24dp"
+ android:layout_height="24dp"
+ android:layout_gravity="bottom"
+ android:textColor="#fff"
+ android:importantForAccessibility="no"
+ android:src="@drawable/ic_arrow_right_white" />
+
+ </LinearLayout>
+
+ </LinearLayout>
+
+ </androidx.cardview.widget.CardView>
+
+</LinearLayout>