DroidFS/app/src/main/res/layout/checkboxes_section.xml

20 lines
745 B
XML
Raw Normal View History

2020-10-15 17:43:13 +02:00
<?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">
2021-11-09 11:12:09 +01:00
<CheckBox
2020-10-15 17:43:13 +02:00
android:id="@+id/checkbox_remember_path"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
2021-06-07 16:34:50 +02:00
android:text="@string/remember_volume_path"/>
2020-10-15 17:43:13 +02:00
2021-11-09 11:12:09 +01:00
<CheckBox
2020-10-15 17:43:13 +02:00
android:id="@+id/checkbox_save_password"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
2021-06-07 16:34:50 +02:00
android:text="@string/fingerprint_save_checkbox_text"/>
2020-10-15 17:43:13 +02:00
</LinearLayout>