mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-06-22 09:00:57 +00:00
Add checkbox dialog to wipe vault before import
Only show dialog when vault contains entries Add improvements from review
This commit is contained in:
parent
7d38bc9b71
commit
0f6b0dddbe
7 changed files with 92 additions and 3 deletions
15
app/src/main/res/layout/dialog_checkbox.xml
Normal file
15
app/src/main/res/layout/dialog_checkbox.xml
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue