Tay*_*sis 4 android react-native
我正在接收通知,现在使用默认图标。我想自定义它们,但我真的没有及时设置图标。
然后我在位置和正确的名称中创建了目录,如下所示(Android):
android/app/src/main/res/drawable-mdpi/ (24x24)
android/app/src/main/res/drawable-hdpi/ (36x36)
android/app/src/main/res/drawable-xhdpi/ (48x48)
android/app/src/main/res/drawable-xxhdpi/ (72x72)
android/app/src/main/res/drawable-xxxhdpi/ (96x96)
Run Code Online (Sandbox Code Playgroud)
现在,我想获得正确大小的图像并在此处解决它。
var notification = new firebase.notifications.Notification({
sound: 'default',
show_in_foreground: true,
})
.android.setPriority(firebase.notifications.Android.Priority.High)
.android.setChannelId("channel")
.android.setSmallIcon( <How do I put icon paths here?> );
Run Code Online (Sandbox Code Playgroud)
我已经阅读了一些文档和指南,但我真的没有想法。引用这些路径的正确方法是什么?
我们建议将以下行放在您的清单中,然后将所有不同大小的图标放入 mipmap 文件夹后,它将根据设备的分辨率调用。
<meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:resource="@mipmap/ic_noti_icon" />
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
7536 次 |
| 最近记录: |