Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions f...
If you think the Android project Dual-Battery-Widget listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright 2011 Artiom Chilaru (http://flexlabs.org)
*//fromwww.java2s.com
* 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 org.flexlabs.widgets.dualbattery.service;
import android.app.Service;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.IBinder;
import org.flexlabs.widgets.dualbattery.BatteryLevel;
import org.flexlabs.widgets.dualbattery.Constants;
import org.flexlabs.widgets.dualbattery.BatteryWidgetUpdater;
publicclass MonitorService extends Service {
private IntentReceiver batteryReceiver;
public IBinder onBind(Intent intent) {
return null;
}
publicvoid onCreate() {
super.onCreate();
batteryReceiver = new IntentReceiver(this);
registerReceiver(batteryReceiver, new IntentFilter(Intent.ACTION_SCREEN_ON));
registerReceiver(batteryReceiver, new IntentFilter(Intent.ACTION_SCREEN_OFF));
registerReceiver(batteryReceiver, new IntentFilter(Intent.ACTION_DOCK_EVENT));
registerReceiver(batteryReceiver, new IntentFilter(Intent.ACTION_BATTERY_CHANGED));
}
privatevoid processStartIntent(Intent intent) {
if (intent == null)
return;
finalint[] widgetIds = intent.getIntArrayExtra(Constants.EXTRA_WIDGET_IDS);
if (widgetIds != null) {
// Update our widgets on the non UI thread
new Thread(new Runnable() {
@Override
publicvoid run() {
try {
BatteryWidgetUpdater.updateAllWidgets(MonitorService.this, BatteryLevel.getCurrent(), widgetIds);
} catch (Exception ignore) {}
}
}).start();
}
}
@Override
publicvoid onStart(Intent intent, int startId) { // For compatibility with android 1.6
processStartIntent(intent);
}
@Override
publicint onStartCommand(Intent intent, int flags, int startId) {
processStartIntent(intent);
return START_STICKY;
}
@Override
publicvoid onDestroy() {
super.onDestroy();
unregisterReceiver(batteryReceiver);
}
}