当前位置: 移动技术网 > 移动技术>移动开发>Android > Android8.0之后启动服务崩溃

Android8.0之后启动服务崩溃

2020年07月14日  | 移动技术网移动技术  | 我要评论

1、启动服务时候
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
startForegroundService(new Intent(this, BleNfcDeviceService.class));
} else {
startService(new Intent(this, BleNfcDeviceService.class));
}
2、服务接受时
notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel = new NotificationChannel(notificationId, notificationName, NotificationManager.IMPORTANCE_HIGH);
notificationManager.createNotificationChannel(channel);
}
startForeground(1, getNotification());

private Notification getNotification() {
Notification.Builder builder = new Notification.Builder(this)
.setSmallIcon(R.mipmap.icon)
.setContentTitle("")
.setContentText("");

    //设置Notification的ChannelID,否则不能正常显示

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        builder.setChannelId(notificationId);
    }
    Notification notification = builder.build();
    return notification;

}

本文地址:https://blog.csdn.net/baidu_39285054/article/details/107316750

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网