有人可以帮我解决这个问题。我想在手机电池电量不足时收到通知。我的 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 命令更改电池电量。我的手机电池确实发生了变化,但我没有收到任何敬酒消息。我什至尝试使用代码注册接收器