summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout/dialog_checkbox.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/android/app/src/main/res/layout/dialog_checkbox.xml')
-rw-r--r--src/android/app/src/main/res/layout/dialog_checkbox.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/android/app/src/main/res/layout/dialog_checkbox.xml b/src/android/app/src/main/res/layout/dialog_checkbox.xml
new file mode 100644
index 000000000..c0f307117
--- /dev/null
+++ b/src/android/app/src/main/res/layout/dialog_checkbox.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:paddingTop="5dp"
+ android:paddingLeft="20dp"
+ android:paddingRight="20dp"
+ android:paddingBottom="0dp"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <CheckBox
+ android:id="@+id/checkBox"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/do_not_show_this_again" />
+</LinearLayout>