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.xml
2020-03-23 17:31:36 +07:00

94 lines
3.8 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"
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
android:title="@string/cherish_settings_title" >
<!-- Status Bar -->
<Preference
android:key="statusbar_category"
android:title="@string/statusbar_title"
android:fragment="com.cherish.settings.fragments.StatusBarSettings"
android:icon="@drawable/ic_settings_statusbar"/>
<!-- Quick Settings panel -->
<Preference
android:key="quicksettings_category"
android:title="@string/quicksettings_title"
android:fragment="com.cherish.settings.fragments.QuickSettings"
android:icon="@drawable/ic_settings_quicksettings"/>
<!-- Buttons -->
<Preference
android:key="buttonsettings_category"
android:title="@string/button_title"
android:fragment="com.cherish.settings.fragments.ButtonSettings"
android:icon="@drawable/ic_settings_buttons"/>
<!-- Navigation Bar -->
<Preference
android:key="navigationbar_category"
android:title="@string/navbar_title"
android:fragment="com.cherish.settings.fragments.NavbarSettings"
android:icon="@drawable/ic_settings_navbar"/>
<!-- Lock Screen -->
<Preference
android:key="lockscreen_category"
android:title="@string/lockscreen_title"
android:fragment="com.cherish.settings.fragments.LockScreenSettings"
android:icon="@drawable/ic_settings_lockscreens"/>
<!-- Power Menu -->
<Preference
android:key="powermenu__category"
android:title="@string/powermenu_title"
android:fragment="com.cherish.settings.fragments.PowerMenuSettings"
android:icon="@drawable/ic_settings_powermenu"/>
<!-- Recents -->
<Preference
android:key="recents_category"
android:title="@string/recents_title"
android:fragment="com.cherish.settings.fragments.RecentsSettings"
android:icon="@drawable/ic_settings_recents"/>
<!-- Notifications -->
<Preference
android:key="notifications_category"
android:title="@string/notifications_title"
android:fragment="com.cherish.settings.fragments.NotificationSettings"
android:icon="@drawable/ic_settings_notification"/>
<!-- Misc -->
<Preference
android:key="misc_category"
android:title="@string/misc_title"
android:fragment="com.cherish.settings.fragments.MiscSettings"
android:icon="@drawable/ic_settings_miscs"/>
<!-- Device Part -->
<Preference
android:key="device_part"
android:persistent="false"
android:title="@string/device_part_title"
android:icon="@drawable/ic_settings_device">
<intent android:action="android.intent.action.MAIN"
android:targetPackage="org.omnirom.device"
android:targetClass="org.omnirom.device.DeviceSettings"/>
</Preference>
</PreferenceScreen>