Моє MainActicity
починається RefreshService
з Intent
якого є boolean
додатковий називається isNextWeek
.
Моє RefreshService
робить те, Notification
що починається моє, MainActivity
коли користувач натискає на нього.
це виглядає приблизно так:
Log.d("Refresh", "RefreshService got: isNextWeek: " + String.valueOf(isNextWeek));
Intent notificationIntent = new Intent(this, MainActivity.class);
notificationIntent.putExtra(MainActivity.IS_NEXT_WEEK, isNextWeek);
Log.d("Refresh", "RefreshService put in Intent: isNextWeek: " + String.valueOf(notificationIntent.getBooleanExtra(MainActivity.IS_NEXT_WEEK,false)));
pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
builder = new NotificationCompat.Builder(this).setContentTitle("Title").setContentText("ContentText").setSmallIcon(R.drawable.ic_notification).setContentIntent(pendingIntent);
notification = builder.build();
// Hide the notification after its selected
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notificationManager.notify(NOTIFICATION_REFRESH, notification);
Як ви бачите, notificationIntent
повинні бути boolean
додаткові, IS_NEXT_WEEK
значення isNextWeek
яких вводиться в PendingIntent
.
Коли я натискаю зараз, Notification
я завжди отримую false
як значенняisNextWeek
Ось так я отримую значення в MainActivity
:
isNextWeek = getIntent().getBooleanExtra(IS_NEXT_WEEK, false);
Журнал:
08-04 00:19:32.500 13367-13367/de.MayerhoferSimon.Vertretungsplan D/Refresh: MainActivity sent: isNextWeek: true
08-04 00:19:32.510 13367-13573/de.MayerhoferSimon.Vertretungsplan D/Refresh: RefreshService got: isNextWeek: true
08-04 00:19:32.510 13367-13573/de.MayerhoferSimon.Vertretungsplan D/Refresh: RefreshService put in Intent: isNextWeek: true
08-04 00:19:41.990 13367-13367/de.MayerhoferSimon.Vertretungsplan D/Refresh: MainActivity.onCreate got: isNextWeek: false
Коли я безпосередньо почати MainActivity
з Intent
з ìsNextValue` , як це:
Intent i = new Intent(this, MainActivity.class);
i.putExtra(IS_NEXT_WEEK, isNextWeek);
finish();
startActivity(i);
все працює добре, і я отримую, true
коли isNextWeek
є true
.
Що я помиляюсь, що завжди є false
цінність?
ОНОВЛЕННЯ
це вирішує проблему: https://stackoverflow.com/a/18049676/2180161
Цитата:
Я підозрюю, що, оскільки єдине, що змінюється в Намір, - це додаткові засоби,
PendingIntent.getActivity(...)
фабричний метод - це просто повторне використання старого наміру в якості оптимізації.У RefreshService спробуйте:
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, PendingIntent.FLAG_CANCEL_CURRENT);
Побачити:
http://developer.android.com/reference/android/app/PendingIntent.html#FLAG_CANCEL_CURRENT
ОНОВЛЕННЯ 2
Дивіться відповідь нижче, чому це краще використовувати PendingIntent.FLAG_UPDATE_CURRENT
.