Revert submission 30375632-revert-30294757-catalyst_battery_percentage-RPJNJOPEZI Reason for revert: the failures is part of the robolectric issue b/378822459. Tested locally that the change is not breaking ClockworkSetupWizardRoboTests. Reverted changes: /q/submissionid:30375632-revert-30294757-catalyst_battery_percentage-RPJNJOPEZI Change-Id: I2210002924650cb54c55a41be25d97a3997c065e
63 lines
2.2 KiB
Kotlin
63 lines
2.2 KiB
Kotlin
/*
|
|
* Copyright (C) 2024 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.
|
|
*/
|
|
package com.android.settings.fuelgauge.batteryusage
|
|
|
|
import android.content.Context
|
|
import com.android.settings.R
|
|
import com.android.settings.display.BatteryPercentageSwitchPreference
|
|
import com.android.settings.flags.Flags
|
|
import com.android.settingslib.metadata.PreferenceAvailabilityProvider
|
|
import com.android.settingslib.metadata.PreferenceIconProvider
|
|
import com.android.settingslib.metadata.ProvidePreferenceScreen
|
|
import com.android.settingslib.metadata.preferenceHierarchy
|
|
import com.android.settingslib.preference.PreferenceScreenCreator
|
|
|
|
@ProvidePreferenceScreen
|
|
class PowerUsageSummaryScreen :
|
|
PreferenceScreenCreator, PreferenceAvailabilityProvider, PreferenceIconProvider {
|
|
override val key: String
|
|
get() = KEY
|
|
|
|
override val title: Int
|
|
get() = R.string.power_usage_summary_title
|
|
|
|
override val keywords: Int
|
|
get() = R.string.keywords_battery
|
|
|
|
override fun isFlagEnabled(context: Context) = Flags.catalystPowerUsageSummaryScreen()
|
|
|
|
override fun hasCompleteHierarchy() = false
|
|
|
|
override fun fragmentClass() = PowerUsageSummary::class.java
|
|
|
|
override fun isAvailable(context: Context) =
|
|
context.resources.getBoolean(R.bool.config_show_top_level_battery)
|
|
|
|
override fun getIcon(context: Context): Int =
|
|
if (Flags.homepageRevamp()) {
|
|
R.drawable.ic_settings_battery_filled
|
|
} else {
|
|
R.drawable.ic_settings_battery_white
|
|
}
|
|
|
|
override fun getPreferenceHierarchy(context: Context) =
|
|
preferenceHierarchy(this) { +BatteryPercentageSwitchPreference() }
|
|
|
|
companion object {
|
|
const val KEY = "power_usage_summary_screen"
|
|
}
|
|
}
|