我使用Firebase Notification作为我的应用程序的推送通知。所有工作正常,但通知图标显示白色圆圈时,应用程序不运行。我的目标是SDK版本23,我也使用Roman Nurik的通知图标生成器来生成白色的透明图标。
通知图标显示正确时,应用程序在前台和运行。img
但是当应用程序在后台或被杀死时,图标会被普通的白色圆圈取代。img
这是我的通知生成器方法:private void sendNotification(String messageTitle, String messageBody) {
Intent intent = new Intent(this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent,
PendingIntent.FLAG_ONE_SHOT);
NotificationCompat.Builder notification = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_stat_notification_icon)
.setContentTitle(messageTitle)
.setContentText(messageBody)
.setStyle(new NotificationCompat.BigTextStyle().bigText(messageBody))
.setAutoCancel(true)
.setPriority(Notification.PRIORITY_DEFAULT)
.setDefaults(Notification.DEFAULT_ALL)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0, notification.build());
}
我已经找到了一个类似问题的答案:通知图标与新的Firebase云消息系统
不幸的是,这是Firebase通知在SDK中的限制9.0.0. 当应用程序在后台时,启动器图标会从清单中使用(带有必要的Android颜色)来发送消息
如果应用程序在前台(或数据消息正在发送),你应该能够使用您自己的逻辑来定制,您应该能够如果从HTTP/XMPP api发送消息,则自定义图标。现在从控制台发送的消息中,你会得到这个行为。
这似乎是最好的方法来避免这个Firebase通知错误是改变你的targetSdkVersion
在build.gradle
19。然后通知图标将被着色。Firebase过一段时间会修复这个问题。
希望对大家有所帮助
试试下面的代码:
Intent intent = new Intent(this, TabActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
PendingIntent.FLAG_ONE_SHOT);
Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(getNotificationIcon())
.setContentTitle("IDS DMS Support")
.setContentText(messageBody)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
我认为你需要在应用程序中添加一个轮廓图标,并在设备运行Android Lollipop时使用它。
使用下面的代码获得通知的小图标。
protected int getNotificationIcon() {
boolean useWhiteIcon = (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP);
return useWhiteIcon ? R.drawable.ic_silhouette : R.drawable.ic_launcher;
}
你可以在这里看到完整的解决方案。