Android8.0+ 没有后台Service了,怎么办?

举报
yd_221104950 发表于 2020/12/01 00:37:19 2020/12/01
【摘要】 今天用传统方式,直接在Android 10上直接调用startService方法启动service服务,没有多久就报ANR。如果手机熄灭的状态下,打调试包,控制台会报以下错误: Caused by: java.lang.IllegalStateException: Not allowed to start service Intent { cmp=com.wong.te...

今天用传统方式,直接在Android 10上直接调用startService方法启动service服务,没有多久就报ANR。如果手机熄灭的状态下,打调试包,控制台会报以下错误:
Caused by: java.lang.IllegalStateException: Not allowed to start service Intent { cmp=com.wong.testphone/.socket.MinaService }: app is in background uid UidRecord{9cd1107 u0a341 TPSL idle change:idle|cached procs:1 seq(0,0,0)}
 
Android 8.0+ 对特定函数做出了以下变更:

如果针对Android 8.0+的应用不允许创建后台服务,如果使用 startService() 函数,则引发 IllegalStateException异常。解决的办法是使用新的Context.startForegroundService() 函数将启动一个前台服务,并且service必须在创建服务后的五秒内调用该服务的 startForeground() 函数,否则将会报错。

解决示例:

Step 1:使用startForegroundService启动服务

public class MainActivity extends AppCompatActivity {
@Override public void onCreate() { super.onCreate(); Intent intent = new Intent(getApplicationContext(), MinaService.class); if (Build.VERSION.SDK_INT >= 26) { startForegroundService(intent); } else { // Pre-O behavior. startService(intent); } }
...
}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

Step 2:在service中5秒内必须调用startForeground

public class MinaService extends Service { private ConnectionThread thread; @Override public void onCreate() { super.onCreate(); //全局context 避免内存泄漏,不多说 thread = new ConnectionThread("mina", getApplicationContext()); if (Build.VERSION.SDK_INT >= 26) { NotificationChannel channel = new NotificationChannel(CHANNEL_ID,CHANNEL_NAME, NotificationManager.IMPORTANCE_HIGH); NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); manager.createNotificationChannel(channel); Notification notification = new Notification.Builder(getApplicationContext(),CHANNEL_ID).build(); startForeground(1, notification); } } ...
}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

文章来源: blog.csdn.net,作者:WongKyunban,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/weixin_40763897/article/details/110201016

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。