我在Android应用的后台尝试从BroadcastReceiver启动服务时遇到问题。我遇到的错误如下:
java.lang.RuntimeException: Unable to start receiver com.arunkavale.test.CallReceiver: android.app.BackgroundServiceStartNotAllowedException: Not allowed to start service Intent { cmp=com.arunkavale.test/.CallBackgroundService }: app is in background uid UidRecord{b662afa u0a438 RCVR idle change:idle|uncached|procstate|procadj procs:0 seq(2847242,2847240)} caps=------
at android.app.ActivityThread.handleReceiver(ActivityThread.java:4905)
字符串
问题
我有一个BroadcastReceiver(CallReceiver),它是在响应某些事件时触发的,我试图从这个接收器启动一个后台服务(CallBackgroundService)。但是,似乎直接从后台的接收器启动服务受到限制,我得到了BackgroundServiceStartNotAllowedException。
// CallReceiver.java
public class CallReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// Error occurs when trying to start the background service here
Intent serviceIntent = new Intent(context, CallBackgroundService.class);
context.startService(serviceIntent);
}
}
// CallBackgroundService.java
public class CallBackgroundService extends Service {
// ... (service implementation)
}
型
1.当我尝试在后台从BroadcastReceiver启动服务时,如何解决BackgroundServiceStartNotAllowedException?
1.是否有其他方法可以在后台从BroadcastReceiver启动后台服务,而不违反Android 8.0(Oreo)中引入的限制?
任何见解或指导将不胜感激。谢谢!
1条答案
按热度按时间xuo3flqw1#
AFAIK,没有 * 简单的魔术 * 解决方案。你试图
startService
,意味着启动 * 后台服务 *,这是没有运行在那一刻-而且,正如你所说,是受限制的。基本上,您有以下选项:
1.服务需要绑定到某个当前正在运行的对象(Activity或其他服务)。Bound services overview
1.您需要将请求作为 * 前台服务 * 启动,这意味着带有通知等。Foreground services
1.从BroadcastReceiver(填写数字1.选项)启动您的应用程序或活动(绑定所需的服务),并从那里启动服务。