Fala galera blz, alguém já esta usando o esquema de Push Notification do Google Firebase e teve problemas com o icone da mensagem? Na hora de exibir ele fica branco sei que é algo relacionado ao fundo transparente.
E qual a maneira de expandir também? já tentei style bigtext e nada.
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
NotificationManager mNotificationManager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
Intent intent = new Intent(this, MainActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, intent, 0);
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
this)
.setSmallIcon(R.drawable.ic_notification_ae)
.setStyle(new NotificationCompat.BigTextStyle().bigText(remoteMessage.getNotification().getBody()))
.setContentText("Troca Ae")
.setColor(Color.RED)
.setVibrate(new long[]{100, 250})
.setDefaults(Notification.DEFAULT_SOUND).setAutoCancel(true);
mBuilder.setContentIntent(contentIntent);
mNotificationManager.notify(new Random().nextInt(), mBuilder.build());
}