我是靠谱客的博主 清新麦片,这篇文章主要介绍Android service启动报错IllegalStateException: Not allowed to start service Intent ...,现在分享给大家,希望可以做个参考。
Android 8.0 不再允许后台service直接通过startService方式去启动,否则就会引起IllegalStateException。一般的解决方式:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
context.startForegroundService(new Intent(context,TestService.class));
} else {
context.startService(new Intent(context,TestService.class))
最后
以上就是清新麦片最近收集整理的关于Android service启动报错IllegalStateException: Not allowed to start service Intent ...的全部内容,更多相关Android内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复