mirror of https://github.com/beemdevelopment/Aegis
Add warning banner after plaintext export
parent
b875baacef
commit
045b8280bf
@ -0,0 +1,26 @@
|
||||
<?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="match_parent"
|
||||
android:orientation="vertical"
|
||||
android:paddingBottom="10dp"
|
||||
android:paddingTop="10dp">
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="25dp"
|
||||
android:layout_marginEnd="25dp"
|
||||
android:text="@string/backup_plaintext_warning_explanation" />
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/checkbox_dont_show_plaintext_warning_again"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="20dp"
|
||||
android:layout_marginEnd="20dp"
|
||||
android:layout_marginTop="5dp"
|
||||
android:text="@string/pref_show_plaintext_warning_hint"
|
||||
android:checked="true" />
|
||||
|
||||
</LinearLayout>
|
Loading…
Reference in New Issue