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_statusbar.xml
DennySPB d3294ccf88 Cherish: VoLTE icon toggle [2/2]
Change-Id: I8c2d9c1a1f1554bf0f2c7cf355fff9abb0137263
Signed-off-by: DennySPB <dennyspb@gmail.com>
Signed-off-by: Hưng Phan <phandinhhungvp2001@gmail.com>
2020-10-04 14:15:20 +07:00

47 lines
1.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2020 CherishOS 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/statusbar_title"
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
<PreferenceCategory
android:key="status_bar_icons"
android:title="@string/status_bar_system_icons_title">
<Preference
android:title="@string/statusbar_items_title"
android:icon="@drawable/ic_shortcuts">
<intent android:action="android.intent.action.MAIN"
android:targetPackage="com.android.systemui"
android:targetClass="com.android.systemui.tuner.StatusbarItemsActivity" />
</Preference>
<com.cherish.settings.preferences.SystemSettingSwitchPreference
android:key="show_fourg"
android:icon="@drawable/ic_4g"
android:title="@string/show_fourg_title"
android:summary="@string/show_fourg_summary"
android:defaultValue="false" />
<com.cherish.settings.preferences.SystemSettingSwitchPreference
android:key="show_volte"
android:icon="@drawable/ic_volte"
android:title="@string/volte_switch_title"
android:summary="@string/volte_switch_summary"
android:defaultValue="true" />
</PreferenceCategory>
</PreferenceScreen>