j2e*_*nue 3 android android-notifications firebase firebase-cloud-messaging android-mipmap
要使用 FCM 设置默认图标,我们可以在 Android 清单中添加元标记。我的目前如下所示,因为我想在接收推送通知时使用应用程序的图标作为通知图标:
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@mipmap/ic_logo_launcher" />
<meta-data
android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/colorAccent" />
Run Code Online (Sandbox Code Playgroud)
请注意,我是ic_logo_launcher.png从 mipmap 文件夹获取的。这是可取的吗?
是的 !你可以...尽管 firebase 默认采用 app_icon
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@mipmap/ic_launcher" />
<meta-data
android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/notificationBackground" />
Run Code Online (Sandbox Code Playgroud)
但最好使用 @drawable 中的图标,它将具有 alpha 和白色图标。
| 归档时间: |
|
| 查看次数: |
4528 次 |
| 最近记录: |