我在接到系统广播时尝试使用接收器获取有关电池的信息,但是没有做任何事情就失败了
这是代码:
if (Intent.ACTION_BATTERY_CHANGED.equals(intent.getAction()))
{//doing
1...
}
并在AndroidManifest.xml中
<receiver android:name=".BroadCastReceiver_battery">
<intent-filter>
<action android:name="android.intent.action.BATTERY_CHANGED" />
</intent-filter>
</receiver>