有人可以請幫我出來這個。 我想在手機電池電量不足時收到通知。 我androidManifest文件看起來像這樣:沒有得到電池低通知
<receiver android:name="com.dac.BatteryChangedBroadcastReceiver">
<intent-filter>
<action android:name="android.intent.action.BATTERY_LOW" />
</intent-filter></receiver>
和我接收的文件是:
public class BatteryChangedBroadcastReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
String intentAction = intent.getAction();
if(Intent.ACTION_BATTERY_LOW.equalsIgnoreCase(intentAction))
Toast.makeText(context, "Battery Power Low or Okay", Toast.LENGTH_LONG).show();
}
}
我改變使用telnet命令電池電量。我的手機電池確實發生了變化,但我沒有收到任何敬酒信息。我甚至嘗試使用代碼註冊接收器
嗨,我已經改變了我的接收器的包,但它仍然無法正常工作。 – ncst