我是靠谱客的博主 高挑冥王星,最近开发中收集的这篇文章主要介绍Android Bad notification for startForeground: java.lang.RuntimeException: invalid channel for servic,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
测试机:小米8SE,MIUI 11.0.2
android.app.RemoteServiceException: Bad notification for startForeground: java.lang.RuntimeException: invalid channel for service notification: Notification(channel=null pri=0 contentView=null vibrate=null sound=null defaults=0x0 flags=0x62 color=0x00000000 vis=PRIVATE)
查阅了诸多资料,发现这是Android8.0对于服务通知的变更
在8.0以后不能直接调用startservice了
改成
Intent intet1 = new Intent(MainActivity.this, LocationUtils.class);
intet1.setAction("android.intent.action.RESPOND_VIA_MESSAGE");
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
//android8.0以上通过startForegroundService启动service
startForegroundService(intet1);
} else {
startService(intet1);
}
在开启通知的时候
Intent nfIntent = new Intent(this, MainActivity.class);
Notification.Builder builder = new Notification.Builder(this.getApplicationContext())
.setContentIntent(PendingIntent.getActivity(this, 0, nfIntent, 0)) // 设置PendingIntent
.setSmallIcon(R.mipmap.ic_launcher) // 设置状态栏内的小图标
.setContentTitle(getResources().getString(R.string.app_name))
.setContentText("正在上传...") // 设置上下文内容
.setWhen(System.currentTimeMillis()); // 设置该通知发生的时间
String CHANNEL_ONE_ID = "com.primedu.cn";
String CHANNEL_ONE_NAME = "Channel One";
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
//修改安卓8.1以上系统报错
NotificationChannel notificationChannel = new NotificationChannel(CHANNEL_ONE_ID, CHANNEL_ONE_NAME, NotificationManager.IMPORTANCE_MIN);
notificationChannel.enableLights(false);//如果使用中的设备支持通知灯,则说明此通知通道是否应显示灯
notificationChannel.setShowBadge(false);//是否显示角标
notificationChannel.setLockscreenVisibility(Notification.VISIBILITY_SECRET);
NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
manager.createNotificationChannel(notificationChannel);
builder.setChannelId(CHANNEL_ONE_ID);
}
Notification notification = builder.build(); // 获取构建好的Notification
notification.defaults = Notification.DEFAULT_SOUND; //设置为默认的声音
startForeground(1, notification);
在mainfest中添加
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
参考:https://www.jianshu.com/p/7691957536a2
https://blog.csdn.net/qq_15527709/article/details/78853048
最后
以上就是高挑冥王星为你收集整理的Android Bad notification for startForeground: java.lang.RuntimeException: invalid channel for servic的全部内容,希望文章能够帮你解决Android Bad notification for startForeground: java.lang.RuntimeException: invalid channel for servic所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复