2017-02-18 18:13:13 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<PreferenceCategory
|
|
|
|
android:key="wearplugin"
|
|
|
|
android:title="@string/wear_settings">
|
|
|
|
|
2017-12-01 20:28:34 +01:00
|
|
|
<PreferenceScreen
|
|
|
|
android:title="@string/wear_settings">
|
2017-10-12 18:01:10 +02:00
|
|
|
|
2017-12-01 20:28:34 +01:00
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="wearcontrol"
|
|
|
|
android:summary="@string/wearcontrol_summary"
|
|
|
|
android:title="@string/wearcontrol_title" />
|
2017-05-09 23:23:37 +02:00
|
|
|
|
2018-05-03 17:15:36 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
android:key="wearplugin"
|
|
|
|
android:title="@string/wear_wizard_settings"
|
|
|
|
android:summary="@string/wear_wizard_settings_summary"
|
|
|
|
android:dependency="wearcontrol">
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="@string/key_wearwizard_bg"
|
|
|
|
android:title="@string/treatments_wizard_bg_label"
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:dependency="wearcontrol"/>
|
|
|
|
|
2018-05-08 13:23:54 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="@string/key_wearwizard_tt"
|
|
|
|
android:title="@string/treatments_wizard_tt_label"
|
|
|
|
android:defaultValue="false"
|
2018-05-09 16:46:22 +02:00
|
|
|
android:dependency="@string/key_wearwizard_bg"/>
|
2018-05-08 13:23:54 +02:00
|
|
|
|
2018-05-03 17:15:36 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="@string/key_wearwizard_trend"
|
|
|
|
android:title="@string/treatments_wizard_bgtrend_label"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:dependency="wearcontrol"/>
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="@string/key_wearwizard_cob"
|
|
|
|
android:title="@string/treatments_wizard_cob_label"
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:dependency="wearcontrol"/>
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="@string/key_wearwizard_bolusiob"
|
|
|
|
android:title="@string/treatments_wizard_bolusiob_label"
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:dependency="wearcontrol"/>
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="@string/key_wearwizard_basaliob"
|
|
|
|
android:title="@string/treatments_wizard_basaliob_label"
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:dependency="wearcontrol"/>
|
|
|
|
</PreferenceCategory>
|
2017-07-15 16:02:08 +02:00
|
|
|
|
2018-05-03 17:42:21 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
android:key="wearplugin"
|
|
|
|
android:title="@string/wear_display_settings">
|
|
|
|
<SwitchPreference
|
2018-05-03 21:55:54 +02:00
|
|
|
android:defaultValue="false"
|
2018-05-03 17:42:21 +02:00
|
|
|
android:key="wear_detailediob"
|
|
|
|
android:summary="@string/wear_detailedIOB_summary"
|
|
|
|
android:title="@string/wear_detailedIOB_title" />
|
2018-02-14 15:02:04 +01:00
|
|
|
|
2018-05-03 17:42:21 +02:00
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="wear_detailed_delta"
|
|
|
|
android:summary="@string/wear_detailed_delta_summary"
|
|
|
|
android:title="@string/wear_detailed_delta_title" />
|
2018-02-21 15:56:13 +01:00
|
|
|
|
2018-05-03 17:42:21 +02:00
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="wear_showbgi"
|
|
|
|
android:summary="@string/wear_showbgi_summary"
|
|
|
|
android:title="@string/wear_showbgi_title" />
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="wear_predictions"
|
|
|
|
android:summary="@string/wear_predictions_summary"
|
|
|
|
android:title="@string/wear_predictions_title" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
|
|
android:key="wearplugin"
|
|
|
|
android:title="@string/wear_general_settings">
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="wear_notifySMB"
|
|
|
|
android:summary="@string/wear_notifysmb_summary"
|
|
|
|
android:title="@string/wear_notifysmb_title" />
|
|
|
|
</PreferenceCategory>
|
2017-12-01 20:28:34 +01:00
|
|
|
</PreferenceScreen>
|
|
|
|
</PreferenceCategory>
|
2018-02-19 20:48:54 +01:00
|
|
|
</PreferenceScreen>
|