我是靠谱客的博主 灵巧盼望,最近开发中收集的这篇文章主要介绍android service 报错,android startForegroundService ,调用startForeground还是报错,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

问题描述

android startForegroundService ,调用了startForeground还是报同样错

相关代码

// 请把代码文本粘贴到下方(请勿用图片代替代码)

if (Build.VERSION.SDK_INT >= 26) {

this.startForegroundService(new Intent(this, TestService.class));

NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

NotificationChannel Channel = new NotificationChannel("bxforeground", "啦啦啦", NotificationManager.IMPORTANCE_HIGH);

Channel.enableLights(true);//设置提示灯

Channel.setLightColor(Color.RED);//设置提示灯颜色

Channel.setShowBadge(true);//显示logo

Channel.setDescription("啦啦啦");//设置描述

Channel.setLockscreenVisibility(Notification.VISIBILITY_PUBLIC); //设置锁屏可见 VISIBILITY_PUBLIC=可见

manager.createNotificationChannel(Channel);

Notification notification = new Notification.Builder(this)

.setChannelId("bxforeground")

.setContentTitle("啦啦啦")

.setContentText("啦啦啦")

.setWhen(System.currentTimeMillis())

.setSmallIcon(R.mipmap.ic_launcher)

.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher))

.build();

startForeground(102, notification);

} else {

this.startService(new Intent(JobWakeService.this, TestService.class));

}

你期待的结果是什么?实际看到的错误信息又是什么?

bvbqnkz?w=1084&h=130

最后

以上就是灵巧盼望为你收集整理的android service 报错,android startForegroundService ,调用startForeground还是报错的全部内容,希望文章能够帮你解决android service 报错,android startForegroundService ,调用startForeground还是报错所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部