AndroidAPS/app/src/main/res/xml/pref_general.xml

30 lines
1.1 KiB
XML
Raw Normal View History

2016-07-06 22:50:25 +02:00
<?xml version="1.0" encoding="utf-8"?>
2020-01-09 21:41:02 +01:00
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
2019-09-16 15:49:45 +02:00
2016-07-06 22:50:25 +02:00
<PreferenceCategory
2020-01-09 21:41:02 +01:00
app:initialExpandedChildrenCount="0"
android:title="@string/configbuilder_general">
2016-07-06 22:50:25 +02:00
2019-09-16 15:49:45 +02:00
<ListPreference
android:defaultValue="mg/dl"
android:entries="@array/unitsArray"
android:entryValues="@array/unitsValues"
2020-01-09 21:41:02 +01:00
android:key="@string/key_units"
android:title="@string/unitsnosemicolon" />
2019-09-16 15:49:45 +02:00
2016-07-06 22:50:25 +02:00
<ListPreference
android:defaultValue="en"
android:entries="@array/languagesArray"
android:entryValues="@array/languagesValues"
2020-01-09 21:41:02 +01:00
android:key="@string/key_language"
android:title="@string/language" />
<EditTextPreference
android:title="@string/settings_password"
android:key="settings_password"
android:inputType="textPassword"/>
2019-09-16 15:49:45 +02:00
2016-07-06 22:50:25 +02:00
</PreferenceCategory>
2019-09-16 15:49:45 +02:00
</androidx.preference.PreferenceScreen>