通知管理器已停止工作



此问题已解决。 请参阅下面的解决方案。

我刚刚完成了将消息传递应用程序转换为 FCM。你可以在这里看到我所经历的过程。现在它已经完成,我的通知不再有效。 如果我的 FirebaseMessagingService 收到一条消息,但主应用未处于活动状态,我会在运行它的手机上创建通知。

这已经在GCM上正确运行多年。 当我跟踪代码时,一切都执行正常 - 只是托盘中没有显示通知。 我无法想象Firebase会与此有什么关系。

这是从FirebaseMessagingService调用的代码。 这段代码已经运行了多年,很好。 。 。

public static void raiseNotification( String username, String mesText, int count)
{
String message = "From: " + username + " " + mesText;
if (count > 1)
{
count--;
message = message +  " + " + count + " more";
}

NotificationCompat.Builder b = new NotificationCompat.Builder(GlobalStuff.GCT);
Intent intent = new Intent(GlobalStuff.GCT, MainActivity.class);
intent.putExtra("whattodo", username);
intent.setAction(Long.toString(System.currentTimeMillis())); //just to make it unique from the next one
PendingIntent pIntent = PendingIntent.getActivity(GlobalStuff.GCT, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT);

b.setContentTitle("New SafeTalk Message")
.setSmallIcon(R.drawable.ticon)
.setContentText(message)
.setTicker("New SafeTalk Message")
.setContentIntent(pIntent)
.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
.setAutoCancel(true);
//.addAction(R.drawable.smallredball, "Read Now", pIntent)
//.addAction(R.drawable.smallquestion, "hello there", pIntent);
NotificationManager mgr = (NotificationManager)GlobalStuff.GCT.getSystemService(NOTIFICATION_SERVICE);
mgr.notify(0, b.build());
}

此问题已解决。一旦你为Android编写了一个应用程序,谷歌就会让你在余生中全职工作,只是为了保持它的工作。他们是打破变革的恶魔。 事实证明,此通知问题与Firebase无关(Firebase本身就是所有重大更改之母(。

谷歌更改了如何在奥利奥中发送通知的要求。 Google设计了此更改,以便如果您的应用程序在Oreo上运行并且您尚未进行更改,则通知根本不起作用 - 希望没有人在构建重要的通知。 在奥利奥,他们需要一个channelId。

这是在奥利奥工作的代码。 。 。

实际上,此代码在奥利奥中并不完全有效。请参阅我关于奥利奥通知的下一篇文章

private void sendNotification(String messageBody) {
Intent intent = new Intent(this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
PendingIntent.FLAG_ONE_SHOT);
String channelId = getString(R.string.default_notification_channel_id);
Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this, channelId)
.setSmallIcon(R.drawable.ic_stat_ic_notification)
.setContentTitle("FCM Message")
.setContentText(messageBody)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
// Since android Oreo notification channel is needed.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel = new NotificationChannel(channelId,
"Channel human readable title",
NotificationManager.IMPORTANCE_DEFAULT);
notificationManager.createNotificationChannel(channel);
}
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}

相关内容

  • 没有找到相关文章

最新更新