This DialogFragment handles all the tip related dialogs. This cl makes: 1. All the tips parcelable. 2. Add dialog for HighUsageTip. It also need adapter to populate app list in dialog. 3. Add and update tests Bug: 70570352 Test: RunSettingsRoboTests Change-Id: Ie4c986172cfc73d8746abc7457d966c8600c6145
73 lines
1.9 KiB
Java
73 lines
1.9 KiB
Java
/*
|
|
* 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.
|
|
*/
|
|
|
|
package com.android.settings.fuelgauge.batterytip.tips;
|
|
|
|
import android.content.Context;
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
import com.android.settings.R;
|
|
|
|
/**
|
|
* Tip to show general summary about battery life
|
|
*/
|
|
public class SummaryTip extends BatteryTip {
|
|
|
|
public SummaryTip(@StateType int state) {
|
|
super(TipType.SUMMARY, state, false /* showDialog */);
|
|
}
|
|
|
|
private SummaryTip(Parcel in) {
|
|
super(in);
|
|
}
|
|
|
|
@Override
|
|
public CharSequence getTitle(Context context) {
|
|
return context.getString(R.string.battery_tip_summary_title);
|
|
}
|
|
|
|
@Override
|
|
public CharSequence getSummary(Context context) {
|
|
return context.getString(R.string.battery_tip_summary_summary);
|
|
}
|
|
|
|
@Override
|
|
public int getIconId() {
|
|
return R.drawable.ic_check_circle_green_24dp;
|
|
}
|
|
|
|
@Override
|
|
public void updateState(BatteryTip tip) {
|
|
mState = tip.mState;
|
|
}
|
|
|
|
@Override
|
|
public void action() {
|
|
// do nothing
|
|
}
|
|
|
|
public static final Parcelable.Creator CREATOR = new Parcelable.Creator() {
|
|
public BatteryTip createFromParcel(Parcel in) {
|
|
return new SummaryTip(in);
|
|
}
|
|
|
|
public BatteryTip[] newArray(int size) {
|
|
return new SummaryTip[size];
|
|
}
|
|
};
|
|
}
|