管理者がコントロールパネルからユーザーアカウントをアクティブにすると、アプリがFCM通知を受け取ります。トーストのようなメソッドからいくつかのアクションを実行したいときや、ユーザーがプッシュ通知をクリックします。プッシュ通知をクリックするとロジックを行う方法
これは可能ですか?
ここFirebaseMessagingService
クラス内のコード
public class CustomFirebaseMessagingService extends FirebaseMessagingService {
public static String INTENT_FILTER = "INTENT_FILTER";
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
try {
if (remoteMessage.getNotification() != null) {
Intent intent = new Intent(INTENT_FILTER);
sendNotification(remoteMessage.getNotification().getBody(), intent);
sendBroadcast(intent);
}
} catch (Exception ex) {
}
}
private void sendNotification(String messageBody, Intent intent) {
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.logo)
.setContentTitle("UPDATE")
.setContentText(messageBody)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}
}
バックグラウンドの幸運はありませんでしたが、アクティビティを開くだけですが、意図した目的から送られてきたデータの条件を実行しません。 .. !!?どんな助けをここに..!私はビデオのなかで正確に何をしたのですか –
@SamZar正確にあなたのコードで何が動作していないのかわからないので、私は自分の答えを編集してあなたの問題をカバーする必要があります。編集内容を確認し、それでも解決しない場合は戻ってください。 –
これはうまくいきました:D、以前はうまくいきませんでした。なぜなら、データの 'value'を' getStringExtra'の中に入れたのですが、 'key'で置き換えると、それは魅力的でした。ありがとう、たくさんの男! –