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
|
2017-10-06 02:52:04 +02:00
|
|
|
android:title="@string/default_temptargets">
|
2016-11-11 16:18:10 +01:00
|
|
|
<EditTextPreference
|
2017-10-06 02:52:04 +02:00
|
|
|
android:title="@string/eatingsoon_duration"
|
|
|
|
android:key="@string/key_eatingsoon_duration"
|
|
|
|
android:defaultValue="0"
|
|
|
|
android:inputType="number">
|
2016-11-11 16:18:10 +01:00
|
|
|
</EditTextPreference>
|
|
|
|
<EditTextPreference
|
2017-10-06 02:52:04 +02:00
|
|
|
android:title="@string/eatingsoon_target"
|
|
|
|
android:key="@string/key_eatingsoon_target"
|
2016-11-11 16:18:10 +01:00
|
|
|
android:defaultValue="0"
|
|
|
|
android:inputType="numberDecimal">
|
|
|
|
</EditTextPreference>
|
|
|
|
<EditTextPreference
|
2017-10-06 02:52:04 +02:00
|
|
|
android:title="@string/activity_duration"
|
|
|
|
android:key="@string/key_activity_duration"
|
|
|
|
android:defaultValue="0"
|
|
|
|
android:inputType="number">
|
|
|
|
</EditTextPreference>
|
|
|
|
<EditTextPreference
|
|
|
|
android:title="@string/activity_target"
|
|
|
|
android:key="@string/key_activity_target"
|
2016-11-11 16:18:10 +01:00
|
|
|
android:defaultValue="0"
|
2017-10-06 03:05:36 +02:00
|
|
|
android:inputType="numberDecimal">
|
|
|
|
</EditTextPreference>
|
|
|
|
</PreferenceScreen>
|
|
|
|
<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"
|
2016-11-11 16:18:10 +01:00
|
|
|
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>
|
2017-01-21 23:48:05 +01:00
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="short_tabtitles"
|
|
|
|
android:title="@string/short_tabtitles"/>
|
2016-11-11 16:18:10 +01:00
|
|
|
</PreferenceCategory>
|
2017-01-14 14:25:06 +01:00
|
|
|
</PreferenceScreen>
|