java.lang.RuntimeException: invalid channel for service notification

问题描述

  在APP中使用台前服务并创建通知,发现报错了——
在这里插入图片描述

问题解决

  代码本身应该是没问题的,因为是照着Demo仿写的,看来是环境出了问题,运行在Android Q(API29)上就会出一些乱七八糟的问题。在查阅了Android文档之后发现原本的NotificationCompat.Builder (Context context)被废弃,在API26之后,创建通知需要使用新的构造器NotificationCompat.Builder (Context context, String channelId)——
在这里插入图片描述
  关于通知ID的构造方法,文档上没有多讲,查了一下资料大概如下:

	String CHANNEL_ID = "com.example.recyclerviewtest.N1";
    String CHANNEL_NAME = "TEST";
    NotificationChannel notificationChannel = null;
    if(Build.VERSION.SDK_INT>=Build.VERSION_CODES.O){
        notificationChannel = new NotificationChannel(CHANNEL_ID, CHANNEL_NAME, NotificationManager.IMPORTANCE_HIGH);
        NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        notificationManager.createNotificationChannel(notificationChannel);
    }

  其中,CHANNEL_ID和CHANNEL_NAME是自定义的,没有格式要求。那么完整的创建前台服务+通知的过程,大概如下:

		String CHANNEL_ID = "com.example.recyclerviewtest.N1";
    	String CHANNEL_NAME = "TEST";
    	NotificationChannel notificationChannel = null;
    	if(Build.VERSION.SDK_INT>=Build.VERSION_CODES.O){
    	    notificationChannel = new NotificationChannel(CHANNEL_ID, CHANNEL_NAME, NotificationManager.IMPORTANCE_HIGH);
    	    NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
     	   notificationManager.createNotificationChannel(notificationChannel);
   		}
        Intent intent = new Intent(this, MainActivity.class);
        PendingIntent pendingIntent = PendingIntent.getActivity(this,0, intent, 0);
        
        Notification notification = new NotificationCompat.Builder(this,CHANNEL_ID).
                setContentTitle("This is content title").
                setContentText("This is content text").
                setWhen(System.currentTimeMillis()).
                setSmallIcon(R.mipmap.ic_launcher).
                setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher)).
                setContentIntent(pendingIntent).build();
        startForeground(1, notification);

  同时需要注意的是,API28以后,申请前台服务需要静态注册权限,不然的话会报错——
在这里插入图片描述

<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>

  最终效果——
在这里插入图片描述

参考链接

  1. https://stackoverflow.com/questions/47531742/startforeground-fail-after-upgrade-to-android-8-1
  2. https://developer.android.com/reference/android/support/v4/app/NotificationCompat.Builder.html#NotificationCompat.Builder(android.content.Context,%20java.lang.String)
发布了222 篇原创文章 · 获赞 558 · 访问量 38万+

猜你喜欢

转载自blog.csdn.net/CV_Jason/article/details/99731979