* fixes fragments staying in recents on going home * also made other preferences do binder calls asynchronously Signed-off-by: jhonboy121 <alfredmathew05@gmail.com> Signed-off-by: Hưng Phan <phandinhhungvp2001@gmail.com>
61 lines
2.6 KiB
XML
61 lines
2.6 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">
|
|
|
|
<!-- Launch music player when headset is connected -->
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="headset_connect_player"
|
|
android:title="@string/headset_connect_player_title"
|
|
android:summary="@string/headset_connect_player_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<com.cherish.settings.preferences.SecureSettingSwitchPreference
|
|
android:key="window_ignore_secure"
|
|
android:title="@string/laboratory_ignore_window_secure_title"
|
|
android:summary="@string/laboratory_ignore_window_secure_summary"
|
|
android:defaultValue="false"/>
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="click_partial_screenshot"
|
|
android:title="@string/click_partial_screenshot_title"
|
|
android:summary="@string/click_partial_screenshot_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<Preference
|
|
android:key="app_lock"
|
|
android:title="@string/app_lock_title"
|
|
android:summary="@string/app_lock_summary"
|
|
android:fragment="com.cherish.settings.security.applock.AppLockSettingsFragment"
|
|
settings:controller="com.cherish.settings.security.applock.AppLockSettingsPreferenceController" />
|
|
|
|
<!-- Unlock FPS for specific games -->
|
|
<SwitchPreference
|
|
android:key="use_games_spoof"
|
|
android:title="@string/use_games_spoof_title"
|
|
android:summary="@string/use_games_spoof_summary" />
|
|
|
|
<!-- Unlimited Photos storage -->
|
|
<SwitchPreference
|
|
android:key="use_photos_spoof"
|
|
android:title="@string/use_photos_spoof_title"
|
|
android:summary="@string/use_photos_spoof_summary"
|
|
android:defaultValue="true" />
|
|
|
|
</PreferenceScreen>
|