summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/popup_bubble_view.xml
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2024-04-05 19:20:27 +0200
committerGitHub <noreply@github.com>2024-04-05 19:20:27 +0200
commit92ab575b150ab49ca85e0ac994558142e49c9e68 (patch)
tree422dcd76895a4ba06ed02723ff61351435c0fe49 /app/src/main/res/layout/popup_bubble_view.xml
parent2143ab135182434911d4554a8ef08115eaa0d2d0 (diff)
downloadAntennaPod-92ab575b150ab49ca85e0ac994558142e49c9e68.zip
Delete core module (#7060)
Diffstat (limited to 'app/src/main/res/layout/popup_bubble_view.xml')
-rw-r--r--app/src/main/res/layout/popup_bubble_view.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/app/src/main/res/layout/popup_bubble_view.xml b/app/src/main/res/layout/popup_bubble_view.xml
new file mode 100644
index 000000000..7dee08eb5
--- /dev/null
+++ b/app/src/main/res/layout/popup_bubble_view.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:padding="16dp">
+
+ <TextView
+ android:id="@+id/balloon_message"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:textColor="?attr/colorOnSecondary"
+ android:lines="3" />
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:layout_marginTop="4dp"
+ android:gravity="end">
+
+ <Button
+ android:id="@+id/balloon_button_negative"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textColor="?attr/colorOnSecondary"
+ android:text="@string/no"
+ style="@style/Widget.MaterialComponents.Button.TextButton" />
+
+ <Button
+ android:id="@+id/balloon_button_positive"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textColor="?attr/colorOnSecondary"
+ android:text="@string/yes"
+ style="@style/Widget.MaterialComponents.Button.TextButton" />
+
+ </LinearLayout>
+
+</LinearLayout>