Change-Id: I4ffb0bdf8453068eb049da4823fea6da33346446 Signed-off-by: DennySPb <dennyspb@gmail.com> Signed-off-by: Hưng Phan <phandinhhungvp2001@gmail.com>
74 lines
3.4 KiB
XML
74 lines
3.4 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.SystemSettingMasterSwitchPreference
|
|
android:key="gaming_mode_enabled"
|
|
android:icon="@drawable/ic_gaming_mode"
|
|
android:fragment="com.cherish.settings.fragments.GamingMode"
|
|
android:title="@string/gaming_mode_title"
|
|
android:summary="@string/gaming_mode_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<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" />
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="click_partial_screenshot"
|
|
android:icon="@drawable/ic_partial_screenshot"
|
|
android:title="@string/click_partial_screenshot_title"
|
|
android:summary="@string/click_partial_screenshot_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<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>
|