blob: 06aad14b2e86b18d7c5aa70e7e04402d71ee6ecf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
package com.android.systemui.quicksettings;
import android.content.Context;
import android.content.Intent;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.LevelListDrawable;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;
import com.android.systemui.R;
import com.android.systemui.statusbar.phone.QuickSettingsContainerView;
import com.android.systemui.statusbar.phone.QuickSettingsController;
import com.android.systemui.statusbar.policy.BatteryController;
import com.android.systemui.statusbar.policy.BatteryController.BatteryStateChangeCallback;
public class BatteryTile extends QuickSettingsTile implements BatteryStateChangeCallback{
private boolean charging = false;
private int batteryLevel = 0;
private Drawable batteryIcon;
private LevelListDrawable batteryLevels;
private LevelListDrawable chargingBatteryLevels;
public BatteryTile(Context context, LayoutInflater inflater,
QuickSettingsContainerView container, QuickSettingsController qsc) {
super(context, inflater, container, qsc);
mTileLayout = R.layout.quick_settings_tile_battery;
mOnClick = new View.OnClickListener() {
@Override
public void onClick(View v) {
startSettingsActivity(Intent.ACTION_POWER_USAGE_SUMMARY);
}
};
}
@Override
void onPostCreate() {
updateTile();
BatteryController controller = new BatteryController(mContext, false);
controller.addStateChangedCallback(this);
super.onPostCreate();
}
@Override
public void onBatteryLevelChanged(int level, boolean pluggedIn) {
batteryLevel = level;
charging = pluggedIn;
updateResources();
}
@Override
public void updateResources() {
updateTile();
super.updateResources();
}
private synchronized void updateTile() {
batteryLevels = (LevelListDrawable) mContext.getResources().getDrawable(R.drawable.qs_sys_battery);
chargingBatteryLevels = (LevelListDrawable) mContext.getResources().getDrawable(R.drawable.qs_sys_battery_charging);
batteryIcon = charging
? chargingBatteryLevels :
batteryLevels;
if(batteryLevel == 100) {
mLabel = mContext.getString(R.string.quick_settings_battery_charged_label);
}else{
mLabel = charging
? mContext.getString(R.string.quick_settings_battery_charging_label,
batteryLevel)
: mContext.getString(R.string.status_bar_settings_battery_meter_format,
batteryLevel);
}
}
@Override
void updateQuickSettings() {
TextView tv = (TextView) mTile.findViewById(R.id.battery_textview);
tv.setText(mLabel);
ImageView iv = (ImageView) mTile.findViewById(R.id.battery_image);
iv.setImageDrawable(batteryIcon);
iv.setImageLevel(batteryLevel);
}
}
|