new solution > We will not show the footer preference in the beginning when users entering the app, it will wait until the data is loaded to show the footer and app item in the same time. We also enhance the footer message as "Battery usage data will be available after you use your phone for a few hours" when there are not content in the begining. Bug: 187766862 Bug: 188871770 Test: make SettingsRoboTests Change-Id: I8d19173b4402722797b1ae3c4cfe6dcdf2d3fe3f
36 lines
1.3 KiB
XML
36 lines
1.3 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.BatteryHistoryPreference
|
|
android:key="battery_graph"/>
|
|
|
|
<PreferenceCategory
|
|
android:key="app_list"/>
|
|
|
|
<com.android.settingslib.widget.FooterPreference
|
|
android:key="battery_graph_footer"
|
|
android:title="@string/battery_usage_screen_footer"
|
|
android:selectable="false"
|
|
settings:searchable="false"/>
|
|
</PreferenceScreen>
|