Android推送通知声音仅在应用处于前景时播放,但在应用处于后台时不播放声音

前端之家收集整理的这篇文章主要介绍了Android推送通知声音仅在应用处于前景时播放,但在应用处于后台时不播放声音前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用FCM进行推送通知
下面的代码在收到通知时发出声音
public void playNotificationSound() {
        try {

            Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
            Ringtone r = RingtoneManager.getRingtone(mContext,notification);
            r.play();

        } catch (Exception e) {
            e.printStackTrace();
        }
    }

我正在调用这个OnMessageReceived方法,但声音仅在应用程序处于前台时播放,而不是在应用程序处于后台时播放

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

        if (remoteMessage == null)
            return;

        // Check if message contains a notification payload.
        if (remoteMessage.getNotification() != null) {
            Log.e(TAG,"Notification Body: " + remoteMessage.getNotification().getBody());
            handleNotification(remoteMessage.getNotification().getBody());
        }

        // Check if message contains a data payload.
        if (remoteMessage.getData().size() > 0) {
            Log.e(TAG,"Data Payload: " + remoteMessage.getData().toString());

            try {
                JSONObject json = new JSONObject(remoteMessage.getData().toString());
                handleDataMessage(json);
            } catch (Exception e) {
                Log.e(TAG,"Exception: " + e.getMessage());
            }
        }
    }





 private void handleNotification(String message) {
        if (!NotificationUtils.isAppIsInBackground(getApplicationContext())) {
            // app is in foreground,broadcast the push message
            Intent pushNotification = new Intent(config.PUSH_NOTIFICATION);
            pushNotification.putExtra("message",message);
            LocalBroadcastManager.getInstance(this).sendBroadcast(pushNotification);

            // play notification sound
            NotificationUtils notificationUtils = new NotificationUtils(getApplicationContext());
            notificationUtils.playNotificationSound();
        }else if (NotificationUtils.isAppIsInBackground(getApplicationContext())){
            // If the app is in background,firebase itself handles the notification
            NotificationUtils notificationUtils = new NotificationUtils(getApplicationContext());
            notificationUtils.playNotificationSound();
        }
    }

解决方法

通过Firebase控制台在Android中发送通知时,它将被视为通知消息.当应用程序处于后台时,Android设备(系统托盘)将始终自动处理通知消息(请参阅 Handling messages).

这意味着不会调用onMessageReceived().因此,如果您打算在收到通知时始终播放声音,则必须使用数据消息*.但是,您必须在不使用Firebase控制台的情况下发送邮件.

原文链接:https://www.f2er.com/android/316965.html

猜你在找的Android相关文章