- Add dialog for limit charge tips - Add action button to make limit charge tips can bypass charge limited - Fix layout typo Screenshot: https://screenshot.googleplex.com/5ngtD2sJAKSQZD3.png Bug: 196315151 Bug: 197769934 Test: make SettingsRoboTests Change-Id: I0901c56ae93691c984376852da78cde9078caaf0
76 lines
2.2 KiB
Java
76 lines
2.2 KiB
Java
/*
|
|
* Copyright (C) 2020 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.batterytip.tips;
|
|
|
|
import android.app.settings.SettingsEnums;
|
|
import android.content.Context;
|
|
import android.os.Parcel;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settingslib.core.instrumentation.MetricsFeatureProvider;
|
|
|
|
/**
|
|
* Tip to show current battery is overheated
|
|
*/
|
|
public class BatteryDefenderTip extends BatteryTip {
|
|
|
|
public BatteryDefenderTip(@StateType int state) {
|
|
super(TipType.BATTERY_DEFENDER, state, true /* showDialog */);
|
|
}
|
|
|
|
private BatteryDefenderTip(Parcel in) {
|
|
super(in);
|
|
}
|
|
|
|
@Override
|
|
public CharSequence getTitle(Context context) {
|
|
return context.getString(R.string.battery_tip_limited_temporarily_title);
|
|
}
|
|
|
|
@Override
|
|
public CharSequence getSummary(Context context) {
|
|
return context.getString(R.string.battery_tip_limited_temporarily_summary);
|
|
}
|
|
|
|
@Override
|
|
public int getIconId() {
|
|
return R.drawable.ic_battery_status_good_24dp;
|
|
}
|
|
|
|
@Override
|
|
public void updateState(BatteryTip tip) {
|
|
mState = tip.mState;
|
|
}
|
|
|
|
@Override
|
|
public void log(Context context, MetricsFeatureProvider metricsFeatureProvider) {
|
|
metricsFeatureProvider.action(context, SettingsEnums.ACTION_BATTERY_DEFENDER_TIP,
|
|
mState);
|
|
}
|
|
|
|
public static final Creator CREATOR = new Creator() {
|
|
public BatteryTip createFromParcel(Parcel in) {
|
|
return new BatteryDefenderTip(in);
|
|
}
|
|
|
|
public BatteryTip[] newArray(int size) {
|
|
return new BatteryDefenderTip[size];
|
|
}
|
|
};
|
|
|
|
}
|