首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android中的BatteryService及相干组件

2012-08-29 
Android中的BatteryService及相关组件?Android中的BatteryService及相关组件????????????????? * the alre

Android中的BatteryService及相关组件

? Android中的BatteryService及相关组件????????????????? * the already-set timer.
???????????????? */
??????????????? int pluggedType = intent.getIntExtra("plugged", 0);
??????????????? if (mScreenOff && shouldWifiStayAwake(stayAwakeConditions, mPluggedType) &&
??????????????????????? !shouldWifiStayAwake(stayAwakeConditions, pluggedType)) {
??????????????????? long triggerTime = System.currentTimeMillis() + idleMillis;
??????????????????? mAlarmManager.set(AlarmManager.RTC_WAKEUP, triggerTime, mIdleIntent);
??????????????????? mPluggedType = pluggedType;
??????????????????? return;
??????????????? }
??????????????? mPluggedType = pluggedType;
??????????? }

o StatusBarPolicy用来更新状态栏上的充电图标。

if (action.equals(Intent.ACTION_BATTERY_CHANGED)) {
??????????????? updateBattery(intent);
??????????? }

热点排行