101 lines
4.1 KiB
XML
101 lines
4.1 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"/>
|
|
|
|
<!-- Themes -->
|
|
<Preference
|
|
android:key="theme_category"
|
|
android:title="@string/theme_title"
|
|
android:fragment="com.cherish.settings.fragments.ThemeSettings"
|
|
android:icon="@drawable/ic_settings_themes"/>
|
|
|
|
<!-- Buttons -->
|
|
<Preference
|
|
android:key="button_settings"
|
|
android:title="@string/button_title"
|
|
android:icon="@drawable/ic_settings_buttons"
|
|
android:fragment="com.android.settings.custom.buttons.ButtonSettings"/>
|
|
|
|
<!-- Animations -->
|
|
<Preference
|
|
android:key="animations_category"
|
|
android:title="@string/animations_title"
|
|
android:icon="@drawable/ic_settings_animations"
|
|
android:fragment="com.cherish.settings.fragments.AnimationsSettings"/>
|
|
|
|
<!-- 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>
|