97 lines
3.6 KiB
XML
97 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2016 The Android Open Source Project
|
|
Copyright (C) 2016-2022 crDroid Android Project
|
|
Copyright (C) 2023 AlphaDroid
|
|
|
|
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:key="alpha_settings_preference_screen"
|
|
android:title=" "
|
|
android:persistent="true">
|
|
|
|
<!-- Alpha settings logo -->
|
|
<Preference
|
|
android:key="alpha_settings_logo"
|
|
android:selectable="false"
|
|
settings:layout="@layout/alpha_settings_logo" />
|
|
|
|
<Preference
|
|
android:key="ui_settings_category"
|
|
android:title="@string/ui_title"
|
|
android:fragment="com.alpha.settings.fragments.UserInterface"
|
|
android:icon="@drawable/ic_themes"/>
|
|
|
|
<!-- Status Bar -->
|
|
<Preference
|
|
android:key="statusbar_settings_category"
|
|
android:title="@string/statusbar_title"
|
|
android:fragment="com.alpha.settings.fragments.StatusBar"
|
|
android:icon="@drawable/ic_settings_statusbar"/>
|
|
|
|
<!-- Quick Settings -->
|
|
<Preference
|
|
android:key="quick_settings_category"
|
|
android:title="@string/quicksettings_title"
|
|
android:fragment="com.alpha.settings.fragments.QuickSettings"
|
|
android:icon="@drawable/ic_settings_quicksettings"/>
|
|
|
|
<!-- Buttons -->
|
|
<Preference
|
|
android:key="button_settings"
|
|
android:title="@string/button_title"
|
|
android:icon="@drawable/ic_buttons"
|
|
android:fragment="com.alpha.settings.fragments.Buttons"/>
|
|
|
|
<!-- Lock Screen -->
|
|
<Preference
|
|
android:key="lockscreen_settings_category"
|
|
android:title="@string/lockscreen_title"
|
|
android:fragment="com.alpha.settings.fragments.LockScreen"
|
|
android:icon="@drawable/ic_settings_lockscreen"/>
|
|
|
|
<!-- Notifications -->
|
|
<Preference
|
|
android:key="notification_settings_category"
|
|
android:title="@string/notifications_title"
|
|
android:fragment="com.alpha.settings.fragments.Notifications"
|
|
android:icon="@drawable/ic_notifications"/>
|
|
|
|
<!-- Navigation -->
|
|
<Preference
|
|
android:key="navigation_settings_category"
|
|
android:title="@string/navigation_title"
|
|
android:fragment="com.alpha.settings.fragments.Navigation"
|
|
android:icon="@drawable/ic_navigation"/>
|
|
|
|
<!-- Sound -->
|
|
<Preference
|
|
android:key="sound_settings_category"
|
|
android:title="@string/sound_title"
|
|
android:fragment="com.alpha.settings.fragments.Sound"
|
|
android:icon="@drawable/ic_settings_sound"/>
|
|
|
|
<!-- Misc -->
|
|
<Preference
|
|
android:key="misc_settings_category"
|
|
android:title="@string/misc_title"
|
|
android:fragment="com.alpha.settings.fragments.Miscellaneous"
|
|
android:icon="@drawable/ic_settings_misc"/>
|
|
|
|
<!-- About AlphaDroid -->
|
|
<Preference
|
|
android:key="about_alphadroid"
|
|
android:title="@string/about_crdroid"
|
|
android:fragment="com.alpha.settings.fragments.About"
|
|
android:icon="@drawable/ic_settings_about"/>
|
|
</PreferenceScreen>
|