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-07-05 19:29:16 +01:00

25 lines
1015 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="password_monitoring_key"
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>