实际上@ tato469的答案似乎不正确。然后,你的问题过于含糊,因为你没有提到错误或不起作用。
看着你的代码我假设了 Notification 根本就没有表现出来。
Notification
您的通知未显示,因为您没有提供图标。即使SDK文档没有提到它是必需的,事实上它实际上是非常的 Notification 没有人就不会表现出来。
addAction 仅自4.1起可用。在此之前你会使用 PendingIntent 推出一个 Activity 。你似乎指定了一个 PendingIntent ,所以你的问题出在其他地方。从逻辑上讲,必须得出结论,这是缺少的图标。
addAction
PendingIntent
Activity
这让我今天绊倒了,但我意识到这是因为在Android P上,默认情况下“请勿打扰”也会隐藏所有通知,而不是像在O之前那样对它们进行静音。这不适用于通知。
我喜欢让DND开启我的开发设备,所以进入DND设置并更改设置以简单地使通知静音(但不隐藏它们)为我修复它。
我的Android应用程序遇到了同样的问题。我正在尝试通知,并发现通知显示在我的Android模拟器上运行了一个牛轧糖(Android 7)系统,而它没有运行在我的手机上有oreo(Android 8)。阅读文档后,我发现android具有称为通知通道的功能,如果没有通知通道将不会显示在oreo设备上。以下是通知渠道上官方Android文档的链接。
https://developer.android.com/guide/topics/ui/notifiers/notifications.html#Templates https://developer.android.com/training/notify-user/channels.html
干杯!
我想你忘记了
addAction(int icon, CharSequence title, PendingIntent intent)
看这里 添加动作
你错过了小图标。 我犯了同样的错误,上面的步骤解决了它。
根据官方文件: 一个 通知 对象必须包含以下内容:
一个小图标,由 setSmallIcon()
标题,由...设定 setContentTitle()
详细文本,设置 setContentText()
的 在Android 8.0(API级别26)及更高版本 强> ,有效的通知通道ID,设置方式 setChannelId() 或在创建通道时在NotificationCompat.Builder构造函数中提供。
看到 http://developer.android.com/guide/topics/ui/notifiers/notifications.html
Android版本必须创建通知渠道> Android Oreo用于显示通知。如果您的应用中看不到Oreo + androids的通知,则需要在应用启动时调用以下功能 -
private void createNotificationChannel() { // Create the NotificationChannel, but only on API 26+ because // the NotificationChannel class is new and not in the support library if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { CharSequence name = getString(R.string.channel_name); String description = getString(R.string.channel_description); int importance = NotificationManager.IMPORTANCE_DEFAULT; NotificationChannel channel = new NotificationChannel(CHANNEL_ID, name, importance); channel.setDescription(description); // Register the channel with the system; you can't change the importance // or other notification behaviours after this NotificationManager notificationManager = getSystemService(NotificationManager.class); notificationManager.createNotificationChannel(channel); } }