- Thanks to @Shripal17 for suggesting list preference instead of a toggle - Add a device specific flashlight check @idoybh (DerpFest) edits: The current check is for isRingerAudiable and not for DND - change var names and strings so it'll not mislead any future developer or any user
77 lines
3.3 KiB
XML
77 lines
3.3 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">
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="notification_headers"
|
|
android:icon="@drawable/ic_notification_center"
|
|
android:title="@string/notification_headers_title"
|
|
android:summary="@string/notification_headers_summary"
|
|
android:defaultValue="true" />
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="center_notification_headers"
|
|
android:title="@string/center_notification_headers_title"
|
|
android:summary="@string/center_notification_headers_summary"
|
|
android:dependency="notification_headers"
|
|
android:defaultValue="true" />
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="force_expanded_notifications"
|
|
android:icon="@drawable/ic_notification"
|
|
android:title="@string/force_expanded_notifications_title"
|
|
android:summary="@string/force_expanded_notifications_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<Preference
|
|
android:key="charging_light"
|
|
android:icon="@drawable/ic_battery_almostfull"
|
|
android:fragment="com.cherish.settings.fragments.BatteryLightSettings"
|
|
android:title="@string/battery_light_settings" />
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="charging_animation"
|
|
android:icon="@drawable/ic_charging"
|
|
android:title="@string/charging_animation_title"
|
|
android:summary="@string/charging_animation_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<PreferenceCategory
|
|
android:key="notification_screen"
|
|
android:title="@string/notification_screen_title" >
|
|
|
|
<com.cherish.settings.preferences.SystemSettingMasterSwitchPreference
|
|
android:key="pulse_ambient_light"
|
|
android:icon="@drawable/ic_pulse"
|
|
android:title="@string/pulse_ambient_light_title"
|
|
android:summary="@string/pulse_ambient_light_summary"
|
|
android:fragment="com.cherish.settings.fragments.EdgePulse"
|
|
android:defaultValue="false" />
|
|
</PreferenceCategory>
|
|
|
|
<com.cherish.settings.preferences.SystemSettingListPreference
|
|
android:key="flashlight_on_call"
|
|
android:icon="@drawable/ic_flashlight"
|
|
android:title="@string/flashlight_on_call_title"
|
|
android:entries="@array/flashlight_on_call_entries"
|
|
android:entryValues="@array/flashlight_on_call_values"
|
|
android:defaultValue="0" />
|
|
|
|
</PreferenceScreen>
|