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

44 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
android:title="Range for Visualization"
android:summary= "High and low mark for the charts in Overview and Smartwatch">
<EditTextPreference
android:title="LOW mark"
android:key="low_mark"
android:defaultValue="0"
android:inputType="number">
</EditTextPreference>
<EditTextPreference
android:title="HIGH mark"
android:key="high_mark"
android:defaultValue="0"
android:inputType="number">
</EditTextPreference>
</PreferenceScreen>
2016-11-11 16:18:10 +01:00
</PreferenceCategory>
</PreferenceScreen>