无法获取自定义通知图标以与FCM和Android一起使用

时间:2018-08-08 22:23:56

标签: firebase-cloud-messaging flutter

这是我的res文件夹

.
├── drawable
│   └── launch_background.xml
├── drawable-hdpi
│   └── ic_stat_ic_notification.png
├── drawable-mdpi
│   └── ic_stat_ic_notification.png
├── drawable-xhdpi
│   └── ic_stat_ic_notification.png
├── drawable-xxhdpi
│   └── ic_stat_ic_notification.png
├── drawable-xxxhdpi
│   └── ic_stat_ic_notification.png
├── mipmap-hdpi
│   └── ic_launcher.png
├── mipmap-mdpi
│   └── ic_launcher.png
├── mipmap-xhdpi
│   └── ic_launcher.png
├── mipmap-xxhdpi
│   └── ic_launcher.png
├── mipmap-xxxhdpi
│   └── ic_launcher.png
└── values
    └── styles.xml

这是我的AndroidManifest.xml行

<meta-data
  android:name="com.google.firebase.messaging.default_notification_icon"
  android:resource="@drawable/ic_stat_ic_notification" />

这是我的通知图标在5.1.1上的样子

full color launcher icon in a gray circle

full color launcher icon in a gray circle

这是新版A​​ndroid的外观

a gray outline of the launcher icon, squircle

a gray outline of the launcher icon, squircle

这是我的xxxhdpi通知图标

a white on transparent png of a bell

a white on transparent png of a bell

无论我尝试什么,都无法让Android显示我尝试提供的轮廓通知图标。我很茫然。

0 个答案:

没有答案