Add checkbox dialog to wipe vault before import

Only show dialog when vault contains entries

Add improvements from review
This commit is contained in:
Michael Schättgen 2020-08-16 03:33:53 +02:00
parent 7d38bc9b71
commit 0f6b0dddbe
7 changed files with 92 additions and 3 deletions

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingStart="20dp"
android:paddingEnd="20dp"
android:paddingTop="20dp">
<CheckBox
android:id="@+id/checkbox"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<requestFocus/>
</CheckBox>
</LinearLayout>