97 lines
4.1 KiB
XML
97 lines
4.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2016 Nitrogen Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:title="@string/notifications_title"
|
|
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
|
|
|
|
<!-- <PreferenceCategory
|
|
android:key="incall_vib_options"
|
|
android:title="@string/incall_vibration_category">
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="vibrate_on_connect"
|
|
android:icon="@drawable/ic_vibrate"
|
|
android:title="@string/incall_vibrate_connect_title"
|
|
android:defaultValue="true" />
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="vibrate_on_callwaiting"
|
|
android:icon="@drawable/ic_vibrate"
|
|
android:title="@string/incall_vibrate_call_wait_title"
|
|
android:defaultValue="true" />
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="vibrate_on_disconnect"
|
|
android:icon="@drawable/ic_vibrate"
|
|
android:title="@string/incall_vibrate_disconnect_title"
|
|
android:defaultValue="true" />
|
|
|
|
</PreferenceCategory> -->
|
|
|
|
<Preference
|
|
android:key="charging_light"
|
|
android:fragment="com.cherish.settings.fragments.BatteryLightSettings"
|
|
android:title="@string/battery_light_settings" />
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="notification_sound_vib_screen_on"
|
|
android:title="@string/notification_sound_vib_screen_on_title"
|
|
android:summary="@string/notification_sound_vib_screen_on_summary"
|
|
android:defaultValue="true" />
|
|
|
|
<!-- Alert Slider Notifications -->
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="alert_slider_notifications"
|
|
android:title="@string/alert_slider_notifications_title"
|
|
android:summary="@string/alert_slider_notifications_summary"
|
|
android:defaultValue="true" />
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="notification_guts_kill_app_button"
|
|
android:title="@string/notification_guts_kill_app_button_title"
|
|
android:summary="@string/notification_guts_kill_app_button_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="toast_icon"
|
|
android:order="24"
|
|
android:title="@string/toast_icon_title"
|
|
android:summary="@string/toast_icon_summary"
|
|
android:defaultValue="true"/>
|
|
|
|
<PreferenceCategory
|
|
android:key="incall_vib_options"
|
|
android:title="@string/incall_vibration_category" >
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="vibrate_on_connect"
|
|
android:title="@string/incall_vibrate_connect_title"
|
|
android:defaultValue="false" />
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="vibrate_on_callwaiting"
|
|
android:title="@string/incall_vibrate_call_wait_title"
|
|
android:defaultValue="false" />
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="vibrate_on_disconnect"
|
|
android:title="@string/incall_vibrate_disconnect_title"
|
|
android:defaultValue="false" />
|
|
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|