其他分享
首页 > 其他分享> > android | 使用系统通知服务

android | 使用系统通知服务

作者:互联网

android | 使用系统通知服务

小细节:8.0以上的安卓版本需要先注册通道

贴代码:
注册通知:

// init notification manager
        nManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        // over 8.0
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
            NotificationChannel nChannel = new NotificationChannel("Mz1notice", "测试通知", NotificationManager.IMPORTANCE_HIGH);
            nManager.createNotificationChannel(nChannel);
        }
        notice = new NotificationCompat.Builder(this, "Mz1notice")
                .setContentTitle("标题")
                .setContentText("文本")
                .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.icon))
                .setSmallIcon(R.drawable.ic_nitice)
                .setAutoCancel(true)
                .build();   // create notice

发送通知:

nManager.notify(1, notice);

标签:8.0,notice,服务,通知,nManager,Build,NotificationChannel,android
来源: https://www.cnblogs.com/Mz1-rc/p/15860365.html