コードの下のプッシュ通知に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();
}
}
onMessageReceived()
は通知オブジェクトの送信時に呼び出されないため、通知が到着したときにそれを処理するBroadcastReceiverを作成しました。
public class NotificationReceiver extends WakefulBroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
playNotificationSound(context);
}
public void playNotificationSound(Context context) {
try {
Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
Ringtone r = RingtoneManager.getRingtone(context, notification);
r.play();
} catch (Exception e) {
e.printStackTrace();
}
}
マニフェストに追加しました。受信者は通知の着信音を再生する責任があります。
<receiver
Android:name=".notification.NotificationReceiver"
Android:exported="true"
Android:permission="com.google.Android.c2dm.permission.SEND" >
<intent-filter>
<action Android:name="com.google.Android.c2dm.intent.RECEIVE" />
</intent-filter>
</receiver>
Androidで通知を送信する場合、それはNotificationメッセージとして扱われます。通知メッセージは常にアプリがバックグラウンドで動作しているときに、Androidデバイス(システムトレイ))によって自動的に処理されます( メッセージの処理 を参照)。
つまり、onMessageReceived()
は呼び出されません。したがって、通知の受信時に常にサウンドを再生する場合は、代わりにDataMessage *を使用する必要があります。ただし、Firebaseコンソールを使用せずにメッセージを送信する必要があります。
Firebase Notificationでサウンドを有効にする必要がありますComposer Advanced settings。:)
private void sendNotification(String messageBody, Intent intent) {
//intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent/*.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)*/,
PendingIntent.FLAG_ONE_SHOT);
NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
builder.setContentIntent(pendingIntent);
Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);//<--
Bitmap bitmap = getBitmapfromUrl(postImageUrl);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.notification_recive)
.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.notification_recive))
.setContentTitle(postTitle + "")
.setStyle(new NotificationCompat.BigPictureStyle()
.setSummaryText(postTitle + "")
.bigPicture(bitmap))
.setContentText(messageBody)
.setLights(getResources().getColor(R.color.blue),1000,1500)
.setAutoCancel(true)
.setSound(defaultSoundUri)//<--
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}
アプリケーションがバックグラウンドで実行されているときに、すでにonMessageReceivedメソッド、firebase send remoteMessage.getData()タイプを持っています。そして、remoteMessage.getNotification()はnullになります。したがって、音はアプリがフォアグラウンドにあるときにのみ再生され、アプリがバックグラウンドにあるときは再生されません。追加する必要があります
if (remoteMessage.getData().size() > 0) {
Log.e(TAG, "Data Payload: " + remoteMessage.getData().toString());
try {
JSONObject json = new JSONObject(remoteMessage.getData().toString());
handleNotification(json.getString("msg");//I am assuming message key is msg
handleDataMessage(json);
} catch (Exception e) {
Log.e(TAG, "Exception: " + e.getMessage());
}
}