summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorGuillaume Jacquart <guillaume.jacquart@hoodbrains.com>2022-11-24 07:55:11 +0000
committerGuillaume Jacquart <guillaume.jacquart@hoodbrains.com>2022-11-24 07:55:11 +0000
commit4df37b50588addf54723b575edfaccea6f34c440 (patch)
tree18ea5e84b52d775e7130ef0b7e66847555c49524 /app/src/main/res/layout
parentd0c4e69b9628b56c1e6f9ec84c407cda98c3f8f9 (diff)
parent8aca1315ebb0e2fa8ef299d65b7f58f2fcb50edb (diff)
Merge branch '5903-warn_user_on_feature_activation' into 'main'
5903 warn user on feature activation See merge request e/os/advanced-privacy!104
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/alertdialog_do_not_show_again.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/app/src/main/res/layout/alertdialog_do_not_show_again.xml b/app/src/main/res/layout/alertdialog_do_not_show_again.xml
new file mode 100644
index 0000000..1b60843
--- /dev/null
+++ b/app/src/main/res/layout/alertdialog_do_not_show_again.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="utf-8"?><!--
+ ~ Copyright (C) 2022 E FOUNDATION
+ ~
+ ~ This program is free software: you can redistribute it and/or modify
+ ~ it under the terms of the GNU General Public License as published by
+ ~ the Free Software Foundation, either version 3 of the License, or
+ ~ (at your option) any later version.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ~ GNU General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU General Public License
+ ~ along with this program. If not, see <https://www.gnu.org/licenses/>.
+ -->
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:paddingHorizontal="16dp"
+ android:paddingTop="24dp"
+ android:paddingBottom="8dp"
+ >
+ <CheckBox
+ android:id="@+id/checkbox"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+
+ android:text="@string/warningdialog_do_not_show_again"
+ />
+</LinearLayout> \ No newline at end of file