summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/popup_bubble_view.xml
diff options
context:
space:
mode:
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>