2020-05-02 22:49:15 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-05-05 01:35:39 +02:00
|
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-05-05 02:03:01 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2020-05-05 01:35:39 +02:00
|
|
|
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/omnipod_name"
|
|
|
|
app:initialExpandedChildrenCount="0">
|
|
|
|
|
2020-05-05 01:25:34 +02:00
|
|
|
<Preference
|
2020-05-02 22:49:15 +02:00
|
|
|
android:enabled="true"
|
2020-05-05 01:25:34 +02:00
|
|
|
android:key="@string/key_rileylink_mac_address"
|
2020-05-02 22:49:15 +02:00
|
|
|
android:summary=""
|
2020-05-05 01:25:34 +02:00
|
|
|
android:title="RileyLink Configuration">
|
2020-05-02 22:49:15 +02:00
|
|
|
<intent android:action="info.nightscout.androidaps.plugins.PumpCommon.dialog.RileyLinkBLEScanActivity" />
|
2020-05-05 01:25:34 +02:00
|
|
|
</Preference>
|
2020-05-02 22:49:15 +02:00
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="true"
|
2020-08-26 13:45:32 +02:00
|
|
|
android:key="@string/key_omnipod_bolus_beeps_enabled"
|
|
|
|
android:title="@string/omnipod_config_bolus_beeps_enabled" />
|
2020-05-02 22:49:15 +02:00
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="true"
|
2020-08-26 13:45:32 +02:00
|
|
|
android:key="@string/key_omnipod_basal_beeps_enabled"
|
|
|
|
android:title="@string/omnipod_config_basal_beeps_enabled" />
|
2020-05-02 22:49:15 +02:00
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="true"
|
2020-08-26 13:45:32 +02:00
|
|
|
android:key="@string/key_omnipod_smb_beeps_enabled"
|
|
|
|
android:title="@string/omnipod_config_smb_beeps_enabled" />
|
2020-05-02 22:49:15 +02:00
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="true"
|
2020-08-26 13:45:32 +02:00
|
|
|
android:key="@string/key_omnipod_tbr_beeps_enabled"
|
|
|
|
android:title="@string/omnipod_config_tbr_beeps_enabled" />
|
2020-05-02 22:49:15 +02:00
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
2020-08-26 13:45:32 +02:00
|
|
|
android:key="@string/key_omnipod_suspend_delivery_button_enabled"
|
|
|
|
android:title="@string/omnipod_config_suspend_delivery_button_enabled" />
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/key_omnipod_pulse_log_button_enabled"
|
|
|
|
android:title="@string/omnipod_config_pulse_log_button_enabled" />
|
2020-05-02 22:49:15 +02:00
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="true"
|
2020-08-26 13:45:32 +02:00
|
|
|
android:key="@string/key_omnipod_time_change_event_enabled"
|
|
|
|
android:title="@string/omnipod_config_time_change_enabled" />
|
2020-05-02 22:49:15 +02:00
|
|
|
|
|
|
|
</PreferenceCategory>
|
2020-05-05 01:35:39 +02:00
|
|
|
</androidx.preference.PreferenceScreen>
|