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

45 lines
1.7 KiB
XML
Raw Normal View History

2016-11-11 16:18:10 +01:00
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:key="others"
android:title="@string/othersettings_title">
<PreferenceScreen
android:title="@string/fillbolus_title">
<EditTextPreference
android:title="@string/button1"
android:key="fill_button1"
android:defaultValue="0.3"
android:inputType="numberDecimal">
</EditTextPreference>
<EditTextPreference
android:title="@string/button2"
android:key="fill_button2"
android:defaultValue="0"
android:inputType="numberDecimal">
</EditTextPreference>
<EditTextPreference
android:title="@string/button3"
android:key="fill_button3"
android:defaultValue="0"
android:inputType="numberDecimal">
</EditTextPreference>
</PreferenceScreen>
2016-11-24 16:08:01 +01:00
<PreferenceScreen
2016-11-29 15:01:00 +01:00
android:title="@string/prefs_range_title"
android:summary= "@string/prefs_range_summary">
2016-11-24 16:08:01 +01:00
<EditTextPreference
2016-11-29 15:01:00 +01:00
android:title="@string/low_mark"
2016-11-24 16:08:01 +01:00
android:key="low_mark"
android:defaultValue="0"
2017-01-14 14:25:06 +01:00
android:inputType="numberDecimal">
2016-11-24 16:08:01 +01:00
</EditTextPreference>
<EditTextPreference
2016-11-29 15:01:00 +01:00
android:title="@string/high_mark"
2016-11-24 16:08:01 +01:00
android:key="high_mark"
android:defaultValue="0"
2017-01-14 14:25:06 +01:00
android:inputType="numberDecimal">
2016-11-24 16:08:01 +01:00
</EditTextPreference>
</PreferenceScreen>
2016-11-11 16:18:10 +01:00
</PreferenceCategory>
2017-01-14 14:25:06 +01:00
</PreferenceScreen>