This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
android_packages_apps_Cherish/res/xml/cherish_settings_misc.xml
xyyx 77b218d5a2 Cherish: Disable dashboards conditions and suggestions (3/3)
Change-Id: I687ac1a48120f9f2b0b42d5811b65fe71f5a1430
Signed-off-by: Hưng Phan <phandinhhungvp2001@gmail.com>
2020-11-18 23:39:49 +07:00

59 lines
2.7 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/misc_title"
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
<com.cherish.settings.preferences.SystemSettingSwitchPreference
android:key="enable_conditions"
android:icon="@drawable/ic_dashboard"
android:title="@string/dashboard_conditions_title"
android:summaryOn="@string/summary_dashboard_conditions_enabled"
android:summaryOff="@string/summary_dashboard_conditions_disabled"
android:defaultValue="true" />
<com.cherish.settings.preferences.SystemSettingSwitchPreference
android:key="enable_suggestions"
android:icon="@drawable/ic_dashboard"
android:title="@string/dashboard_suggestions_title"
android:summaryOn="@string/summary_dashboard_suggestions_enabled"
android:summaryOff="@string/summary_dashboard_suggestions_disabled"
android:defaultValue="true"/>
<com.cherish.settings.preferences.GlobalSettingSwitchPreference
android:icon="@drawable/ic_plug"
android:key="wake_when_plugged_or_unplugged"
android:title="@string/wakeup_when_plugged_unplugged_title"
android:summary="@string/wakeup_when_plugged_unplugged_summary"
android:defaultValue="true" />
<com.cherish.settings.preferences.SystemSettingListPreference
android:key="screenshot_type"
android:icon="@drawable/ic_screenshot"
android:entries="@array/screenshot_type_entries"
android:entryValues="@array/screenshot_type_values"
android:title="@string/screenshot_type_title"
android:defaultValue="0" />
<Preference
android:key="vol_steps"
android:title="@string/volume_steps_fragment_title"
android:summary="@string/volume_steps_summary"
android:icon="@drawable/ic_volume"
android:fragment="com.cherish.settings.fragments.VolumeStepsFragment" />
</PreferenceScreen>