Android Notification横幅通知不显示

原本只需要用builder去设置一个PendingIntent就可以显示横幅通知,

builder.setFullScreenIntent(pendingIntent,false)

实际写代码万万没想到发送通知后,怎么都不弹出横幅通知,

检查了很久才发现builder的问题,

要把Notification.Builder改成NotificationCompat.Builder

// Notification.Builder builder = new Notification.Builder(this);

NotificationCompat.Builder builder = new NotificationCompat.Builder(context, channelId);

改完之后就能正常弹出横幅通知了


补充第二个坑: 要显示横幅通知 ,NotificationChannel在创建的时候第三个参数还要设置成NotificationManager.IMPORTANCE_HIGH,不然也弹不出来

你可能感兴趣的:(个人学习总结)