android webservice 错误,解决Android8.0之后开启service时报错IllegalStateException: Not allowed to start service ...

mContext.startService(Intent(mContext, UpdataLocationsService::class.java))

IllegalStateException startService

查找资料说是Android 8.0 不再允许后台service直接通过startService方式去启动,否则就会引起IllegalStateException。而网上给出的解决方式大多是这样的

解决办法

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {

mContext.startForegroundService(Intent(mContext, UpdataLocationsService::class.java))

} else {

mContext.startService(Intent(mContext, UpdataLocationsService::class.java))

}

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

@Override

public void onCreate() {

super.onCreate();

startForeground(1,new Notification());

}

不过可能是我代码本身的问题,使用上面代码之后应用报出RemoteServiceException: Bad notification for startForeground: java.lang.RuntimeException: invalid ch...

然后做了一些修改,其他的不变,只是在要开启的service中给notification添加 channelId:

val CHANNEL_ID_STRING = "service_01"

override fun onCreate() {

super.onCreate()

val notificationManager = this.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager

var mChannel: NotificationChannel? = null

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {

mChannel = NotificationChannel(

CHANNEL_ID_STRING, getString(R.string.app_name),

NotificationManager.IMPORTANCE_LOW

)

notificationManager.createNotificationChannel(mChannel);

val notification =

Notification.Builder(applicationContext, CHANNEL_ID_STRING)

.setContentText("正在后天定位")

.build()

startForeground(1, notification)

}

}

ok,可以正常跑起来了。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值