原作者地址:地址
String id = "channel_001";
String name = "name";
NotificationManager notificationManager = (NotificationManager) context.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(context)
.setChannelId(id)
.setContentTitle("测试活动1")
.setContentText("您有一项新活动")
.setSmallIcon(R.drawable.a).build();
} else {
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(context)
.setContentTitle("测试活动2")
.setContentText("您有一项新活动")
.setSmallIcon(R.drawable.b)
.setOngoing(true)
.setChannelId(id);//无效
notification = notificationBuilder.build();
}
notificationManager.notify(1, notification);
增加点击跳转和点击删除操作
//设置要跳转的页面
PendingIntent intent = PendingIntent.getActivity(this,0,new Intent(this, Test.class),PendingIntent.FLAG_UPDATE_CURRENT);