相关文章推荐
睡不着的楼房  ·  spring.main.allow-bean ...·  1 月前    · 
大力的饺子  ·  信息发布·  3 月前    · 
有胆有识的泡面  ·  快穿之宿主请节制_百度百科·  6 月前    · 
飘逸的咖啡豆  ·  从破镜重圆说起:汉代铜镜中的历史文化信息 ...·  1 年前    · 
乐观的皮带  ·  砺剑春秋 | ...·  1 年前    · 
善良的高山  ·  【评测】真国产CPU·兆芯x86架构四核处理 ...·  2 年前    · 
Code  ›  解决Android8.0之后开启service开发者社区
context
https://cloud.tencent.com/developer/article/1668368
爱搭讪的抽屉
2 年前
作者头像
Anymarvel
0 篇文章

解决Android8.0之后开启service

前往专栏
腾讯云
开发者社区
文档 意见反馈 控制台
首页
学习
活动
专区
工具
TVP
文章/答案/技术大牛
发布
首页
学习
活动
专区
工具
TVP
返回腾讯云官网
社区首页 > 专栏 > Android开发实战 > 解决Android8.0之后开启service

解决Android8.0之后开启service

作者头像
Anymarvel
发布 于 2020-07-25 16:41:22
3K 0
发布 于 2020-07-25 16:41:22
举报

解决Android8.0之后开启service时报错IllegalStateException: Not allowed to start service Intent ...

背景:

项目测试时发现的,在双击返回键关闭应用后(并未杀死后台)重新打开APP,其他手机都OK,但是8.0的手机会出现较频繁的crash。检查代码,问题锁定在重新开启应用时的startService()上。

查找资料说是Android 8.0 不再允许后台service直接通过startService方式去启动,否则就会引起IllegalStateException

原因

Android 8.0 有一项复杂功能;系统不允许后台应用创建后台服务。 因此,Android 8.0 引入了一种全新的方法,即 Context.startForegroundService(),以在前台启动新服务。 在系统创建服务后,应用有5秒的时间来调用该服务的 startForeground() 方法以显示新服务的用户可见通知。如果应用在此时间限制内未调用 startForeground(),则系统将停止服务并声明此应用为 ANR。

遇到的问题

但是目前在调用:context.startForegroundService(intent)时报如下ANR,startForegroundService()文档说明在service启动后要调用startForeground()。

android.app.RemoteServiceException: Context.startForegroundService() did not then call Service.startForeground()

完整解决步骤:

1. 添加权限

<!--android 9.0上使用前台服务,需要添加权限,此权限为级别为nomarl-->
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

2. 启动server(引用启动5秒内要启动server)

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        context.startForegroundService(new Intent(context, MyService.class));
    } else {
        context.startService(new Intent(context, MyService.class));
    }

然后必须在Myservice中调用startForeground():

3. Server中onCreate方法中调用startForeground()

public static final String CHANNEL_ID_STRING = "service_01";
private Notification notification;
    @Override
    public void onCreate() {
        super.onCreate();
        //适配8.0service
        NotificationManager notificationManager = (NotificationManager) MyApp.getInstance().getSystemService(Context.NOTIFICATION_SERVICE);
        NotificationChannel mChannel = null;
        if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
            mChannel = new NotificationChannel(CHANNEL_ID_STRING, getString(R.string.app_name),
                    NotificationManager.IMPORTANCE_LOW);
            notificationManager.createNotificationChannel(mChannel);
            notification = new Notification.Builder(getApplicationContext(), CHANNEL_ID_STRING).build();
            startForeground(1, notification);
}

4. 在onStart里再次调用startForeground()

@Override
public void onStart(Intent intent, int startId) {
    super.onStart(intent, startId);
 
推荐文章
睡不着的楼房  ·  spring.main.allow-bean-definition-overriding=true是个不好的做法吗?开发者社区
1 月前
大力的饺子  ·  信息发布
3 月前
有胆有识的泡面  ·  快穿之宿主请节制_百度百科
6 月前
飘逸的咖啡豆  ·  从破镜重圆说起:汉代铜镜中的历史文化信息 _光明网
1 年前
乐观的皮带  ·  砺剑春秋 | 新时代女兵最美的样子_澎湃号·政务_澎湃新闻-The Paper
1 年前
善良的高山  ·  【评测】真国产CPU·兆芯x86架构四核处理器开箱与详细评测 - 知乎
2 年前
今天看啥   ·   Py中国   ·   codingpro   ·   小百科   ·   link之家   ·   卧龙AI搜索
删除内容请联系邮箱 2879853325@qq.com
Code - 代码工具平台
© 2024 ~ 沪ICP备11025650号