安卓9.0以上使用Notification的Demo

安卓8.0以上使用Notification的Demo
Notification在android 8.0以上设置时,需要设置渠道信息才能够正常显示通知

        String name = "name";
        NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        Notification notification = null;
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            NotificationChannel mChannel = new NotificationChannel(id, name, NotificationManager.IMPORTANCE_LOW);
            notificationManager.createNotificationChannel(mChannel);
            notification = new Notification.Builder(this)
                    .setChannelId(id)
                    .setContentTitle("活动")
                    .setContentText("您有一项新活动")
                    .setSmallIcon(R.drawable.ic_launcher_foreground).build();
        } else {
            NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
                    .setContentTitle("活动")
                    .setContentText("您有一项新活动")
                    .setSmallIcon(R.drawable.ic_launcher_background)
                    .setOngoing(true)
                    .setChannelId(id);//无效
            notification = notificationBuilder.build();
        }
       // notificationManager.notify(1, notification);把通知显示出来
        startForeground(1,notification);//前台通知(会一直显示在通知栏)

你可能感兴趣的:(安卓9.0以上使用Notification的Demo)