我正在将基于GCM的消息传递应用程序转换为firebase。消息正在使用数据有效载荷格式发送到应用程序。如果我的应用程序正在前台运行或在后台运行,则OnMessageRecieved中的代码将运行并设置通知标题。但是,如果在收到通知时应用未运行,则不会显示标题。我尝试将标题添加到数据有效载荷中:
{
"data": {
"title": "My Title",
"message": "Text of the message",
}
}
,并且还尝试按照定义图标的格式在AndroidManifest.xml中对其进行定义:
<meta-data android:name="com.google.firebase.messaging.default_notification_title" android:value="My Title"/>
,但是这些方法都不起作用。
public override void OnMessageReceived(RemoteMessage message)
{
try
{
SendNotification(message.GetNotification()?.Body, message.Data);
}
catch (Exception e)
{
Console.WriteLine(e);
}
}
void SendNotification(string messageBody, IDictionary<string, string> data)
{
var intent = new Intent(this, typeof(MainActivity));
intent.AddFlags(ActivityFlags.ClearTop);
foreach (string key in data.Keys)
{
if (key == "message")
messageBody = data[key];
else
intent.PutExtra(key, data[key]);
}
var pendingIntent = PendingIntent.GetActivity(this, 0, intent, PendingIntentFlags.OneShot);
var notificationBuilder = new Notification.Builder(this)
.SetSmallIcon(Resource.Drawable.smallicon)
.SetContentTitle(AppInfo.DisplayName)
.SetContentText(messageBody)
.SetAutoCancel(true)
.SetDefaults(NotificationDefaults.Sound | NotificationDefaults.Vibrate)
.SetContentIntent(pendingIntent);
var notificationManager = NotificationManager.FromContext(this);
notificationManager.Notify(0, notificationBuilder.Build());
}
答案 0 :(得分:0)
结果显示正在运行OnMessageRecieved IS,问题在于标题本身的设置:
.SetContentTitle(AppInfo.DisplayName)
AppInfo.DisplayName是在MainActivity的OnCreate方法中设置的。我将变量替换为:
.SetContentTitle(ApplicationInfo.LoadLabel(PackageManager))
,并且在应用未运行时收到的通知中将应用名称显示为标题。感谢BobSnyder为我指出正确的方向!