我正在为我的应用程序使用 firebase FCM,并在 Manifest 中设置了自己的通知图标:
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/ic_custom" />
<meta-data
android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/colorPrimary" />
在我测试过的奥利奥之前的每个安卓系统(API 21、API 23)中,图标正确地出现在推送通知视图中,作为一个带有colorPrimary
背景和ic_custom
内部白色的大圆圈。
在 Android 8.0 中,图标显示为一个填充有 的小圆圈colorPrimary
,内部没有任何图标。
我在这里缺少什么?