我正在开发一个应用,我正在使用Firebase使用通知。
我已经设置了所有内容并且它正在运行,但是,当我的应用程序处于后台并且我在另一个应用程序(例如whatsapp)时,我希望得到heads-up pop-up
通知。
基本上我希望看到从顶部弹出一个告知新通知已经到达,但是,我只是在顶部栏中获得通知图标,如图所示
我在这里检查了其他答案,并使用了Notification.PRIORITY_MAX
属性,但仍无效。
以下是我的通知代码:
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
Intent intent = new Intent(this, MainActivity.class);
intent.setFlags(intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this,0, intent, PendingIntent.FLAG_ONE_SHOT);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this);
notificationBuilder.setContentTitle("Notification Tittle")
.setContentText(remoteMessage.getNotification().getBody())
.setAutoCancel(true)
.setSmallIcon(R.mipmap.ic_launcher)
.setPriority(NotificationCompat.PRIORITY_MAX)
.setDefaults(NotificationCompat.DEFAULT_ALL)
.setContentIntent(pendingIntent);
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0, notificationBuilder.build());
}
在setPriority(NotificationCompat.PRIORITY_MAX)
行中我尝试过不同的可能性:
setPriority(NotificationCompat.PRIORITY_HIGH)
setPriority(NotificationManager.IMPORTANCE_MAX)
到目前为止没有成功。有什么帮助吗?
注意:API 24上的Android 7