design_doc: go/usage-frontend-dd screen_record: https://drive.google.com/file/d/1I8dnoMf7y9KUg0eVeqLJpHqGGOtaX6_0/view?usp=share_link&resourcekey=0-Mte0-LKN1LULRssg9t7zGg Bug b/260786962 is also fixed in this cl. Bug: 258123381 Bug: 260786962 Fix: 258123381 Fix: 260786962 Test: manual Change-Id: Ifd337331d02dc10c3234c594b2e142bcd459c00f
52 lines
2.0 KiB
XML
52 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2017 The Android Open Source 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-auto"
|
|
android:key="power_usage_advanced_screen"
|
|
android:title="@string/advanced_battery_title"
|
|
settings:keywords="@string/keywords_battery_usage">
|
|
|
|
<com.android.settings.fuelgauge.batteryusage.BatteryHistoryPreference
|
|
android:key="battery_chart"
|
|
settings:controller=
|
|
"com.android.settings.fuelgauge.batteryusage.BatteryChartPreferenceController" />
|
|
|
|
<PreferenceCategory
|
|
android:key="battery_usage_breakdown"
|
|
settings:controller=
|
|
"com.android.settings.fuelgauge.batteryusage.BatteryUsageBreakdownController"
|
|
settings:isPreferenceVisible="false">
|
|
|
|
<com.android.settings.fuelgauge.batteryusage.TabPreference
|
|
android:key="battery_usage_tab"
|
|
settings:isPreferenceVisible="false" />
|
|
|
|
<PreferenceCategory
|
|
android:key="app_list"
|
|
settings:isPreferenceVisible="false" />
|
|
|
|
<com.android.settingslib.widget.FooterPreference
|
|
android:key="battery_usage_footer"
|
|
android:selectable="false"
|
|
android:title="@string/battery_usage_screen_footer"
|
|
settings:isPreferenceVisible="false"
|
|
settings:searchable="false" />
|
|
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|