1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-02 11:26:09 +02:00
Gadgetbridge/app/src/main/res/xml/devicesettings_allow_accept_reject_calls.xml
2024-03-31 07:46:47 +00:00

17 lines
802 B
XML

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<SwitchPreferenceCompat
android:defaultValue="true"
android:icon="@drawable/ic_notifications"
android:key="enable_call_accept"
android:layout="@layout/preference_checkbox"
android:title="@string/pref_enable_call_accept"
android:summary="@string/pref_enable_call_accept_summary" />
<SwitchPreferenceCompat
android:defaultValue="true"
android:icon="@drawable/ic_notifications"
android:key="enable_call_reject"
android:layout="@layout/preference_checkbox"
android:title="@string/pref_enable_call_reject"
android:summary="@string/pref_enable_call_reject_summary" />
</PreferenceScreen>