严肃的苹果 · 错误2002 ...· 1 年前 · |
忐忑的黑框眼镜 · Gitkraken免破解,放肆用 - 简书· 1 年前 · |
暗恋学妹的双杠 · 接口压测性能分析及调优手段建议_接口并发测试 ...· 1 年前 · |
谦逊的硬币 · yolov5 pytorch ...· 1 年前 · |
昨天,Google在Google I/O上展示了基于新Firebase的新通知系统。我在Github上的示例中尝试了这个新的FCM ( Firebase Cloud Messaging )。
尽管我已经声明了一个特定的可绘制,但通知的图标始终是 ic_launcher
为什么?下面是处理消息的官方代码
public class AppFirebaseMessagingService extends FirebaseMessagingService {
* Called when message is received.
* @param remoteMessage Object representing the message received from Firebase Cloud Messaging.
// [START receive_message]
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
// If the application is in the foreground handle both data and notification messages here.
// Also if you intend on generating your own notifications as a result of a received FCM
// message, here is where that should be initiated. See sendNotification method below.
sendNotification(remoteMessage);
// [END receive_message]
* Create and show a simple notification containing the received FCM message.
* @param remoteMessage FCM RemoteMessage received.
private void sendNotification(RemoteMessage remoteMessage) {
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);
Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
// this is a my insertion looking for a solution
int icon = Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP ? R.drawable.myicon: R.mipmap.myicon;
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(icon)
.setContentTitle(remoteMessage.getFrom())
.setContentText(remoteMessage.getNotification().getBody())
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}
不幸的是,这是SDK 9.0.0-9.6.1中Firebase通知的一个限制。当应用程序在后台时,从清单中使用启动器图标(带有必要的Android着色)来处理从控制台发送的消息。
但是,在SDK 9.8.0中,您可以覆盖默认设置!在AndroidManifest.xml中,您可以设置以下字段以自定义图标和颜色:
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/notification_icon" />
<meta-data android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/google_blue" />
请注意,如果应用程序在前台(或发送了数据消息),您可以完全使用自己的逻辑来定制显示。如果从HTTP/XMPP API发送消息,您也可以随时自定义图标。
我正在通过FCM控制台和HTTP/JSON触发我的通知...结果是一样的。
我可以处理标题、完整消息,但图标始终是默认的白色圆圈:
而不是代码(setSmallIcon或setSmallIcon)中的自定义图标或应用程序中的默认图标:
Intent intent = new Intent(this, MainActivity.class);
// use System.currentTimeMillis() to have a unique ID for the pending intent
PendingIntent pIntent = PendingIntent.getActivity(this, (int) System.currentTimeMillis(), intent, 0);
if (Build.VERSION.SDK_INT < 16) {
Notification n = new Notification.Builder(this)
.setContentTitle(messageTitle)
.setContentText(messageBody)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentIntent(pIntent)
.setAutoCancel(true).getNotification();
NotificationManager notificationManager =
(NotificationManager) getSystemService(NOTIFICATION_SERVICE);
//notificationManager.notify(0, n);
notificationManager.notify(id, n);
} else {
Bitmap bm = BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher);
Notification n = new Notification.Builder(this)
.setContentTitle(messageTitle)
.setContentText(messageBody)
.setSmallIcon(R.drawable.ic_stat_ic_notification)
.setLargeIcon(bm)
.setContentIntent(pIntent)
.setAutoCancel(true).build();
NotificationManager notificationManager =
(NotificationManager) getSystemService(NOTIFICATION_SERVICE);
//notificationManager.notify(0, n);
notificationManager.notify(id, n);
}
他们正在处理那个问题 https://github.com/firebase/quickstart-android/issues/4
当你从Firebase控制台发送通知时,
默认使用你的应用程序图标,当在通知栏中时,安卓系统会将该图标变为纯白。
如果您对结果不满意,那么您应该实现FirebaseMessagingService,并在收到消息时手动创建通知。我们正在努力改进这一点,但目前这是唯一的方法。
编辑:使用SDK9.8.0添加到 AndroidManifest.xml
<meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:resource="@drawable/my_favorite_pic"/>
使用服务器实现向客户端发送消息,并使用 data 类型的消息而不是 通知 类型的消息。
这将帮助您获得对
onMessageReceived
的回调,无论您的应用程序是在后台还是前台,然后您都可以生成自定义通知
只需将targetSdkVersion设置为19。通知图标将为彩色。然后等待Firebase解决这个问题。
还有一种丑陋但有效的方法。反编译FirebaseMessagingService.class并修改它的行为。然后,只需将类放到您的应用程序中的正确包中,并使用它,而不是消息传递库本身中的类。这是非常简单和有效的。
有一种方法:
private void zzo(Intent intent) {
Bundle bundle = intent.getExtras();
bundle.remove("android.support.content.wakelockid");
if (zza.zzac(bundle)) { // true if msg is notification sent from FirebaseConsole
if (!zza.zzdc((Context)this)) { // true if app is on foreground
zza.zzer((Context)this).zzas(bundle); // create notification
return;
// parse notification data to allow use it in onMessageReceived whe app is on foreground
if (FirebaseMessagingService.zzav(bundle)) {
zzb.zzo((Context)this, intent);
this.onMessageReceived(new RemoteMessage(bundle));
}
此代码来自9.4.0版本,由于混淆,方法在不同版本中会有不同的名称。
我的解决方案类似于ATom的解决方案,但更容易实现。您不需要创建一个完全隐藏FirebaseMessagingService的类,只需覆盖接收Intent的方法(至少在9.6.1版中是公共的),并从附加对象获取要显示的信息。"hacky“部分是方法名称确实是模糊的,每次你更新Firebase sdk到新版本时都会改变,但你可以通过Android Studio检查FirebaseMessagingService并寻找一个只接受Intent作为唯一参数的公共方法来快速查找它。在9.6.1版本中,它被称为zzm。下面是我的服务的样子:
public class MyNotificationService extends FirebaseMessagingService {
public void onMessageReceived(RemoteMessage remoteMessage) {
// do nothing
@Override
public void zzm(Intent intent) {
Intent launchIntent = new Intent(this, SplashScreenActivity.class);
launchIntent.setAction(Intent.ACTION_MAIN);
launchIntent.addCategory(Intent.CATEGORY_LAUNCHER);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* R equest code */, launchIntent,
PendingIntent.FLAG_ONE_SHOT);
Bitmap rawBitmap = BitmapFactory.decodeResource(getResources(),
R.mipmap.ic_launcher);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_notification)
.setLargeIcon(rawBitmap)
.setContentTitle(intent.getStringExtra("gcm.notification.title"))
.setContentText(intent.getStringExtra("gcm.notification.body"))
.setAutoCancel(true)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
忐忑的黑框眼镜 · Gitkraken免破解,放肆用 - 简书 1 年前 |