0
我試圖在接收到系統廣播時使用接收器來獲取關於電池的信息,但是它沒有做任何事情就失敗了。
下面是代碼:
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>
非常感謝您的幫助 – Sean 2011-01-07 09:02:48