这是我的广播接收类。处理启动手机状态的类。
代码;
public class BroadCastRecieverBoot extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent ıntent) {
if(Intent.ACTION_BOOT_COMPLETED.equals(ıntent.getAction()))
{
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
context.startForegroundService(new Intent(context, MyService.class));
context.startForegroundService(new Intent(context, GPSTracker.class));
} else {
context.startService(new Intent(context, MyService.class));
context.startService(new Intent(context, GPSTracker.class));
}
}
}
}
我收到此错误;
android.app.RemoteServiceException: Context.startForegroundService() did not then call Service.startForeground()
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1792)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loop(Looper.java:164)
at android.app.ActivityThread.main(ActivityThread.java:6523)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:438)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:857)
现在在Android奥利奥上已经不行了。我不知道这有什么错。
根据Android 8.0后台执行限制的官方文件
Android 8.0引入了新方法startForegroundService()在前台启动新服务。系统创建服务后,应用程序有五秒钟的时间调用服务的startForeground()方法来显示新服务的用户可见通知。如果应用程序没有在时间限制内调用startForeground(),系统将停止服务,并声明该应用程序为ANR。
因此,请确保您已经通过调用服务的< code>onCreate()方法中的startForeground (int id,Notification notification)启动了正在进行的通知。
注意:以 API Build.VERSION_CODES为目标的应用。P
或更高版本必须请求权限Manifest.permission.FOREGROUND_SERVICE
才能使用此 API。