use of com.asksven.betterbatterystats.widgets.WidgetBars in project BetterBatteryStats by asksven.
the class UpdateLargeWidgetService method onStart.
@Override
public void onStart(Intent intent, int startId) {
if (LogSettings.DEBUG) {
Log.d(TAG, "Service started");
}
// Create some random data
AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(this.getApplicationContext());
int[] allWidgetIds = intent.getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS);
ComponentName thisWidget = new ComponentName(getApplicationContext(), LargeWidgetProvider.class);
int[] allWidgetIds2 = appWidgetManager.getAppWidgetIds(thisWidget);
if (LogSettings.DEBUG) {
Log.w(TAG, "From Intent" + String.valueOf(allWidgetIds.length));
Log.w(TAG, "Direct" + String.valueOf(allWidgetIds2.length));
}
StatsProvider stats = StatsProvider.getInstance();
// make sure to flush cache
BatteryStatsProxy.getInstance(this).invalidate();
for (int widgetId : allWidgetIds) {
RemoteViews remoteViews = new RemoteViews(this.getApplicationContext().getPackageName(), R.layout.large_widget_layout);
// we change the bg color of the layout based on alpha from prefs
SharedPreferences sharedPrefs = PreferenceManager.getDefaultSharedPreferences(this);
int opacity = sharedPrefs.getInt("large_widget_bg_opacity", 20);
opacity = (255 * opacity) / 100;
remoteViews.setInt(R.id.layout, "setBackgroundColor", (opacity << 24) & android.graphics.Color.BLACK);
// retrieve stats
String refFrom = sharedPrefs.getString("large_widget_default_stat_type", Reference.UNPLUGGED_REF_FILENAME);
boolean showPct = sharedPrefs.getBoolean("large_widget_show_pct", false);
boolean showTitle = sharedPrefs.getBoolean("widget_show_stat_type", true);
long timeAwake = 0;
long timeDeepSleep = 0;
long timeScreenOn = 0;
long timeSince = 0;
long sumPWakelocks = 0;
long sumKWakelocks = 0;
try {
Reference currentRef = StatsProvider.getInstance().getUncachedPartialReference(0);
Reference fromRef = ReferenceStore.getReferenceByName(refFrom, this);
ArrayList<StatElement> otherStats = stats.getOtherUsageStatList(true, fromRef, false, true, currentRef);
if ((otherStats == null) || (otherStats.size() == 1)) {
// the desired stat type is unavailable, pick the alternate one and go on with that one
refFrom = sharedPrefs.getString("widget_fallback_stat_type", Reference.UNPLUGGED_REF_FILENAME);
fromRef = ReferenceStore.getReferenceByName(refFrom, this);
otherStats = stats.getOtherUsageStatList(true, fromRef, false, true, currentRef);
}
if ((otherStats != null) && (otherStats.size() > 1)) {
try {
timeAwake = ((Misc) stats.getElementByKey(otherStats, StatsProvider.LABEL_MISC_AWAKE)).getTimeOn();
timeScreenOn = ((Misc) stats.getElementByKey(otherStats, "Screen On")).getTimeOn();
} catch (Exception e) {
timeAwake = 0;
timeScreenOn = 0;
}
timeSince = StatsProvider.getInstance().getSince(fromRef, currentRef);
ArrayList<StatElement> pWakelockStats = stats.getWakelockStatList(true, fromRef, 0, 0, currentRef);
sumPWakelocks = stats.sum(pWakelockStats);
ArrayList<StatElement> kWakelockStats = stats.getKernelWakelockStatList(true, fromRef, 0, 0, currentRef);
sumKWakelocks = stats.sum(kWakelockStats);
Misc deepSleepStat = ((Misc) stats.getElementByKey(otherStats, "Deep Sleep"));
if (deepSleepStat != null) {
timeDeepSleep = deepSleepStat.getTimeOn();
} else {
timeDeepSleep = 0;
}
if (!showTitle) {
remoteViews.setInt(R.id.stat_type, "setVisibility", View.GONE);
}
// Set the text
remoteViews.setTextViewText(R.id.stat_type, fromRef.getLabel());
remoteViews.setTextViewText(R.id.since, DateUtils.formatDurationShort(timeSince));
if (showPct) {
remoteViews.setTextViewText(R.id.awake, StringUtils.formatRatio(timeAwake, timeSince));
remoteViews.setTextViewText(R.id.deep_sleep, StringUtils.formatRatio(timeDeepSleep, timeSince));
remoteViews.setTextViewText(R.id.screen_on, StringUtils.formatRatio(timeScreenOn, timeSince));
} else {
remoteViews.setTextViewText(R.id.awake, DateUtils.formatDurationShort(timeAwake));
remoteViews.setTextViewText(R.id.deep_sleep, DateUtils.formatDurationShort(timeDeepSleep));
remoteViews.setTextViewText(R.id.screen_on, DateUtils.formatDurationShort(timeScreenOn));
}
// and the font size
float fontSize = Float.valueOf(sharedPrefs.getString("large_widget_font_size", "10"));
remoteViews.setFloat(R.id.staticSince, "setTextSize", fontSize);
remoteViews.setFloat(R.id.staticAwake, "setTextSize", fontSize);
remoteViews.setFloat(R.id.staticDeepSleep, "setTextSize", fontSize);
remoteViews.setFloat(R.id.staticScreenOn, "setTextSize", fontSize);
remoteViews.setFloat(R.id.staticKWL, "setTextSize", fontSize);
remoteViews.setFloat(R.id.staticPWL, "setTextSize", fontSize);
remoteViews.setFloat(R.id.stat_type, "setTextSize", fontSize);
remoteViews.setFloat(R.id.since, "setTextSize", fontSize);
remoteViews.setFloat(R.id.awake, "setTextSize", fontSize);
remoteViews.setFloat(R.id.deep_sleep, "setTextSize", fontSize);
remoteViews.setFloat(R.id.screen_on, "setTextSize", fontSize);
remoteViews.setFloat(R.id.kwl, "setTextSize", fontSize);
remoteViews.setFloat(R.id.wl, "setTextSize", fontSize);
if ((sumPWakelocks == 1) && (pWakelockStats.size() == 1)) {
// there was no reference
remoteViews.setTextViewText(R.id.wl, "n/a");
} else {
if (showPct) {
remoteViews.setTextViewText(R.id.wl, StringUtils.formatRatio(sumPWakelocks, timeSince));
} else {
remoteViews.setTextViewText(R.id.wl, DateUtils.formatDurationShort(sumPWakelocks));
}
}
if ((sumKWakelocks == 1) && (kWakelockStats.size() == 1)) {
// there was no reference
remoteViews.setTextViewText(R.id.kwl, "n/a");
} else {
if (showPct) {
remoteViews.setTextViewText(R.id.kwl, StringUtils.formatRatio(sumKWakelocks, timeSince));
} else {
remoteViews.setTextViewText(R.id.kwl, DateUtils.formatDurationShort(sumKWakelocks));
}
}
WidgetBars graph = new WidgetBars();
ArrayList<Long> serie = new ArrayList<Long>();
serie.add(timeSince);
serie.add(timeDeepSleep);
serie.add(timeAwake);
serie.add(timeScreenOn);
serie.add(sumKWakelocks);
serie.add(sumPWakelocks);
remoteViews.setImageViewBitmap(R.id.graph, graph.getBitmap(this, serie));
} else {
// no stat available
// Set the text
String notAvailable = "n/a";
if (fromRef != null) {
remoteViews.setTextViewText(R.id.stat_type, fromRef.m_fileName);
} else {
remoteViews.setTextViewText(R.id.stat_type, notAvailable);
}
remoteViews.setTextViewText(R.id.since, notAvailable);
remoteViews.setTextViewText(R.id.awake, notAvailable);
remoteViews.setTextViewText(R.id.screen_on, notAvailable);
remoteViews.setTextViewText(R.id.wl, notAvailable);
remoteViews.setTextViewText(R.id.kwl, notAvailable);
}
} catch (Exception e) {
Log.e(TAG, "Exception: " + Log.getStackTraceString(e));
} finally {
if (LogSettings.DEBUG) {
Log.d(TAG, "Since: " + DateUtils.formatDurationShort(timeSince));
Log.d(TAG, "Awake: " + DateUtils.formatDurationShort(timeAwake));
Log.d(TAG, "Screen on: " + DateUtils.formatDurationShort(timeScreenOn));
Log.d(TAG, "P. Wl.: " + DateUtils.formatDurationShort(sumPWakelocks));
Log.d(TAG, "K. Wl.: " + DateUtils.formatDurationShort(sumKWakelocks));
}
// Register an onClickListener for the graph -> refresh
Intent clickIntent = new Intent(this.getApplicationContext(), LargeWidgetProvider.class);
clickIntent.setAction(AppWidgetManager.ACTION_APPWIDGET_UPDATE);
clickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, allWidgetIds);
PendingIntent pendingIntent = PendingIntent.getBroadcast(getApplicationContext(), 0, clickIntent, PendingIntent.FLAG_UPDATE_CURRENT);
remoteViews.setOnClickPendingIntent(R.id.layout, pendingIntent);
// Register an onClickListener for the widget -> call main activity
Intent i = new Intent(Intent.ACTION_MAIN);
PackageManager manager = getPackageManager();
i = manager.getLaunchIntentForPackage(getPackageName());
i.addCategory(Intent.CATEGORY_LAUNCHER);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
int stat = Integer.valueOf(sharedPrefs.getString("widget_default_stat", "0"));
i.putExtra(StatsActivity.STAT, stat);
i.putExtra(StatsActivity.STAT_TYPE_FROM, refFrom);
i.putExtra(StatsActivity.STAT_TYPE_TO, Reference.CURRENT_REF_FILENAME);
PendingIntent clickPI = PendingIntent.getActivity(this.getApplicationContext(), PI_CODE, i, PendingIntent.FLAG_UPDATE_CURRENT);
remoteViews.setOnClickPendingIntent(R.id.graph, clickPI);
appWidgetManager.updateAppWidget(widgetId, remoteViews);
}
}
stopSelf();
super.onStart(intent, startId);
}
Aggregations