Firebaseコンソールからプッシュ通知を受け取った後、アプリケーションデータベースを更新しようとしています。これは、アプリケーションが実行されているときに動作しますが、アプリケーションがバックグラウンドにあるときやプロセスが終了したときに、SharedPreferencesのデータを変更することはできません。FirebaseMessagingService - データベースまたはSharedPreferencesをバックグラウンドから更新する方法は?
しかし、NotificationManager
との送信通知が機能しています。 Firebaseからプッシュ通知を取得する際にデータベースを更新する方法はありますか?
private void sendNotification(String messageBody) {
Intent intent = new Intent(this, EventListActivityDrawerNewMenu.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
PendingIntent.FLAG_ONE_SHOT);
Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("FCM Message")
.setContentText(messageBody)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}
private void saveDataToPreferences(String data) {
Context context = this;
SharedPreferences sharedPreferences = getApplicationContext().getSharedPreferences(UpdateDataService.MY_PREFS_NAME, MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString(UpdateDataService.MY_PREFS_NAME, data);
editor.commit();
}
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
android.os.Debug.waitForDebugger();
Log.d(TAG, "From: " + remoteMessage.getFrom());
if (remoteMessage.getData().size() > 0) {
Log.d(TAG, "Message data payload: " + remoteMessage.getData());
}
if (remoteMessage.getNotification() != null) {
Log.d(TAG, "Message Notification Body: " + remoteMessage.getNotification().getBody());
sendNotification(remoteMessage.getNotification().getBody());
}
saveDataToPreferences(remoteMessage.getNotification().getBody());
}