web-dev-qa-db-ja.com

通知は古いIntent Extrasに合格します

このコードを介してBroadcastReceiver内で通知を作成しています:

String ns = Context.NOTIFICATION_SERVICE;
        NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(ns);
        int icon = R.drawable.ic_stat_notification;
        CharSequence tickerText = "New Notification";
        long when = System.currentTimeMillis();

        Notification notification = new Notification(icon, tickerText, when);
        notification.defaults |= Notification.DEFAULT_VIBRATE;
        long[] vibrate = {0,100,200,200,200,200};
        notification.vibrate = vibrate;
        notification.flags |= Notification.FLAG_AUTO_CANCEL;

        CharSequence contentTitle = "Title";
        CharSequence contentText = "Text";
        Intent notificationIntent = new Intent(context, NotificationActivity.class);
        notificationIntent.putExtra(Global.INTENT_EXTRA_FOO_ID, foo_id);
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);

        notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);

        int mynotification_id = 1;

        mNotificationManager.notify(mynotification_id, notification);

通知をクリックすると、NotificationActivityが開き、Activity内でIntent-Bundleからfoo_idを取得できます(例:1)

ただし、別の通知がトリガーされ、もう一度クリックすると、アクティビティはIntent-Bundleから「古い」値(1)を受け取ります。 clear()でバンドルをクリアしようとしましたが、同じ効果があります。私のコードではsthが間違っていると思います。

125
BrianM

保留中の強度に対して同じリクエストコードを送信しています。これを変更:

PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);

に:

PendingIntent contentIntent = PendingIntent.getActivity(context, UNIQUE_INT_PER_CALL, notificationIntent, 0);

同じパラメータを送信する場合、インテントは作成されません。それらは再利用されます。

250
IncrediApp

または、次のコードを使用してPendingIntentを生成できます。

PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);

PendingIntent.FLAG_UPDATE_CURRENTのドキュメントから:

記述されたPendingIntentが既に存在する場合は、それを保持しますが、その新しいデータをこの新しいIntentにあるもので置き換えます。これは、エクストラのみが変更されるインテントを作成する場合に使用でき、以前のPendingIntentを受け取ったエンティティが、明示的に指定されていなくても、新しいエクストラでそれを起動できるかどうかは気にしません。

132
ChristophK

同じIDを渡します。この種の状況では、次のような一意のIDを作成します。

int iUniqueId = (int) (System.currentTimeMillis() & 0xfffffff);

そして、このようにそれを置きます:

PendingIntent contentIntent = PendingIntent.getActivity(getApplicationContext(),iUniqueId, intentForNotification, 0);
40
hderanga

久しぶりに最高のアプローチを探している人は、以下に示すように、最後の引数としてPendingIntent.FLAG_UPDATE_CURRENTを渡す必要があります。

PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);

新しい一意のIDを提供する必要さえありません。

初めてではなく、次回にこれを行う必要があります

4
Gentle

別のオプションを追加したかっただけです

 PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_ONE_SHOT | PendingIntent.FLAG_IMMUTABLE);
0
pellucide

すべての通知のリクエストコードは0です。次の行を変更します。

PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);

と:

PendingIntent contentIntent = PendingIntent.getActivity(context, new Random().nextInt(), notificationIntent, 0);
0
Faisal Shaikh