Android O预览通知渠道
Android O preview Notification Channels
这是我第一次使用 Android Studio 预览版,我需要在我的应用程序图标上显示通知计数,所以我使用了它,因为此功能是 Android O 预览版的一部分.我的问题是如何确保兼容性,因为我当前的目标是 25.0,这会显示以前的版本和当前版本吗?还是我应该使用其他方法来显示此通知功能?
这个问题已经一个月了asked.but如果有人遇到这个问题我就写下这个答案。
如 Android 文档所述:
If you target Android O and post a notification without specifying a valid notifications channel, the notification fails to post and the system logs an error.
这里有一个创建通知渠道的简单示例:
https://developer.android.com/preview/features/notification-channels.html
关于问题:
Android O introduces notification channels to provide a unified system to help users manage notifications. When you target Android O, you must implement one or more notification channels to display notifications to your users. If you don't target Android O, your apps behave the same as they do on Android 7.0 when running on Android O devices.
因此定义的频道不会对 Api < 26
产生任何影响
这是我第一次使用 Android Studio 预览版,我需要在我的应用程序图标上显示通知计数,所以我使用了它,因为此功能是 Android O 预览版的一部分.我的问题是如何确保兼容性,因为我当前的目标是 25.0,这会显示以前的版本和当前版本吗?还是我应该使用其他方法来显示此通知功能?
这个问题已经一个月了asked.but如果有人遇到这个问题我就写下这个答案。
如 Android 文档所述:
If you target Android O and post a notification without specifying a valid notifications channel, the notification fails to post and the system logs an error.
这里有一个创建通知渠道的简单示例:
https://developer.android.com/preview/features/notification-channels.html
关于问题:
Android O introduces notification channels to provide a unified system to help users manage notifications. When you target Android O, you must implement one or more notification channels to display notifications to your users. If you don't target Android O, your apps behave the same as they do on Android 7.0 when running on Android O devices.
因此定义的频道不会对 Api < 26
产生任何影响