1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-10 07:31:34 +02:00
Gadgetbridge/app/src/main/res/xml/devicesettings_password.xml
2022-10-22 22:03:49 +02:00

25 lines
1013 B
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceScreen
android:icon="@drawable/ic_password"
android:key="pref_screen_password"
android:persistent="false"
android:summary="@string/prefs_password_summary"
android:title="@string/prefs_password">
<SwitchPreference
android:defaultValue="false"
android:icon="@drawable/ic_password"
android:key="pref_password_enabled"
android:summary="@string/prefs_password_summary"
android:title="@string/prefs_password_enabled" />
<EditTextPreference
android:dependency="pref_password_enabled"
android:icon="@drawable/ic_password"
android:inputType="numberPassword"
android:key="pref_password"
android:title="@string/prefs_password" />
</PreferenceScreen>
</androidx.preference.PreferenceScreen>