此问题已解决。请在下面查看我的解决方案。
我刚完成将消息传递应用程序转换为FCM。您可以看到我经历过here的过程。既然完成了,我的通知将不再起作用。如果我的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());
}
答案 0 :(得分:0)
此问题已解决。一旦您编写了适用于Android的应用,Google就会让您在余生中全职工作,以保持其正常运行。 他们正在打破变革魔鬼。事实证明,此通知问题与Firebase无关(Firebase本身就是所有重大更改的源头)。
Google更改了有关在Oreo中发送通知的要求。 Google设计了此更改,因此,如果您的应用程序在Oreo上运行并且您尚未进行更改,则通知将根本无法工作-希望没有人在构建重要的通知。在奥利奥,他们需要一个channelId。
这是在Oreo中工作的代码。 。
实际上,此代码在Oreo中无法完全正常工作。请参阅我的下一篇有关Oreo通知的帖子
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());
}