gpt4 book ai didi

android - Ionic 2 推送插件 : White Square while application is in Background?

转载 作者:行者123 更新时间:2023-11-29 19:17:01 24 4
gpt4 key购买 nike

我正在使用 Native Push Plugin对于我正在开发的 Android 应用程序。我已经为我的通知配置了图标和图标颜色,如下所示:

let push = Push.init({
android: {
icon: "ic_notif",
iconColor: "#f94915",
forceShow: true, ...

如果我通过 Firebase 控制台发送通知(Target = User Segment -> App -> My App)并且我在前台(应用程序可见),我的通知图标是在通知区域中正确显示(图标颜色以及通知抽屉中的颜色)。但是,如果我的应用程序处于后台(或根本没有启动)并且我发送了一条消息,我会收到一个白色方 block (以及通知中的图标颜色抽屉是默认的灰色)。

enter image description here

通过查看源代码,在 GCMIntentService.java 中,我发现方法 onMessageReceived 处理传入的消息。当我在前台时,会触发以下条件:

else if (forceShow && PushPlugin.isInForeground()) {
Log.d(LOG_TAG, "foreground force");
extras.putBoolean(FOREGROUND, true);
extras.putBoolean(COLDSTART, false);

showNotificationIfPossible(applicationContext, extras);
}

showNotificationIfPossible 方法负责创建通知(图标、图标颜色、振动、声音等)。这里的问题是,当应用程序在后台时,代码似乎没有被执行(我仍然收到消息),特别是以下代码,这就是我认为的问题所在:

// if we are not in the foreground always send notification if the data has at least a message or title
else {
Log.d(LOG_TAG, "background"); //this is not being logged at all
...

有人知道这里发生了什么吗?。我想我需要更彻底地检查源代码才能弄明白。

最佳答案

manifiest.json 文件的语法已经更新,并且出现了一些新的东西,请检查下面的示例是否与您的情况相同?

{
“名称”:“ ionic ”,
"short_name": " ionic ",
"start_url": "index.html",
“显示”:“独立”,
“图标”:[{
"src": "assets/imgs/logo.png",
“尺寸”:“512x512”,
“类型”:“图像/PNG”
}],
"background_color": "#4e8ef7",
“主题颜色”:“#4e8ef7”
}

您可以从这个文件中做任何您需要的 ui 更改。

关于android - Ionic 2 推送插件 : White Square while application is in Background?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43177919/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com