Android-收到通知,但没有弹出通知(前景)

时间:2019-02-20 13:09:52

标签: android firebase notifications google-cloud-messaging

我的应用正确接收了通知,但未显示带有接收到的信息的弹出通知(如果已打开应用)。

N.B .:如果应用程序在后台运行,则显示的通知没有任何问题。


我的代码:

我通过这种方法收到通知:

@Override
public void onMessageReceived(RemoteMessage remoteMessage)
{
    Log.d(TAG, "From: " + remoteMessage.getFrom());

    if(remoteMessage!=null)
    {
        String id = null;
        String title = null;
        String body = null;
        String launchPage = null;

        if(remoteMessage.getNotification()!=null)
        {
            title = remoteMessage.getNotification().getTitle();
            body = remoteMessage.getNotification().getBody();
        }

        if(remoteMessage.getMessageId()!=null)
        {
            id = remoteMessage.getMessageId();
        }

        Log.i(TAG, "id: " + id);
        Log.i(TAG, "title: "+ title);
        Log.i(TAG, "body: " + body);

        int notif_id = 0;

        sendNotification(notif_id, title, body, launchPage);
    }
}

然后将其称为此消息(按照我的理解应该显示该通知):

private void sendNotification(int id, String title, String messageBody, String launchPage)

    Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);

    NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
                    .setSmallIcon(android.R.drawable.stat_sys_download)
                    .setContentTitle("OMR - "+title)
                    .setContentText(messageBody)
                    .setAutoCancel(true)
                    .setSound(defaultSoundUri)
                    .setColor(ContextCompat.getColor(this, R.color.colorPrimary))
                    .setChannelId(CHANNEL_ID);

    NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        createChannel(notificationManager, CHANNEL_ID);
    }

    Toast.makeText(this, "Received a notif...", Toast.LENGTH_SHORT).show();

    //this line is not showing a notification
    notificationManager.notify(id, notificationBuilder.build());
}

Firebase通知

{
"data": {
    "message": "data payload only used to force using OnMessageReceived() if in BACKGROUND",
    "notif_id": 1
},
"to" : "e04OAVaRw30:APA91bGyv5_tt4IWRkurjlqkqNlCxTBV8oRne18tQ5puniHPItOMgg11kdt56t5jfZnasb4Ms-tH9xUgWQhHy2eM487llRtlM9_V_PoWJI9KSr6XgCaysiDyS",
"notification": {
    "title": "Notification",
    "body": "This is Notification 2",
    "sound":"default"
}

}


结果

  • 通知构建正确
  • 声音正确播放
  • 注意是否已放入系统托盘
  • 但没有弹出通知出现(我必须显示一个 自定义对话框)

我的问题在于此特定行

notificationManager.notify(id, notificationBuilder.build());

无法显示通知

更新 我已在

中阅读了有关Android通知的更多信息
  

https://developer.android.com/guide/topics/ui/notifiers/notifications

,发现通知仅显示在通知抽屉中而不弹出(如Heads-up notifications)。

,根据此question,如果我将通知设置为高优先级,则可以强制将这些通知显示为平视通知。不幸的是,这也不起作用。

2 个答案:

答案 0 :(得分:6)

如果您使用的是FCM,此图片将对所有内容进行说明。

答案 1 :(得分:0)

好吧,在我的情况下,我传递到消息正文中的某些数据在onReceived中为空。

已解决此问题,我的通知弹出窗口再次显示