Benim MainActicity
başlar RefreshService
bir ile Intent
bir sahiptir boolean
denilen ekstra isNextWeek
.
My , kullanıcı tıkladığında başlatan RefreshService
bir yapar .Notification
MainActivity
bu şuna benzer:
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);
Gördüğünüz gibi notificationIntent
olmalıdır boolean
ekstra IS_NEXT_WEEK
değeriyle isNextWeek
konur hangi PendingIntent
.
Şimdi tıkladığımda Notification
bunu her zaman false
değerini alıyorumisNextWeek
Bu, aşağıdaki şekilde değeri almamın yoludur MainActivity
:
isNextWeek = getIntent().getBooleanExtra(IS_NEXT_WEEK, false);
Log:
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
Ben doğrudan başlattığınızda MainActivity
bir ile Intent
böyle ìsNextValue` ile:
Intent i = new Intent(this, MainActivity.class);
i.putExtra(IS_NEXT_WEEK, isNextWeek);
finish();
startActivity(i);
her şey yolunda ve true
ne zaman isNextWeek
olduğunu anlıyorum true
.
Her zaman bir false
değer olduğu konusunda neyi yanlış yaparım ?
GÜNCELLEME
bu sorunu çözer: https://stackoverflow.com/a/18049676/2180161
Alıntı:
Şüphem şu ki, Niyette değişen tek şey ekstralar olduğundan,
PendingIntent.getActivity(...)
fabrika yöntemi basitçe eski amacı bir optimizasyon olarak yeniden kullanmaktır.RefreshService'te şunu deneyin:
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, PendingIntent.FLAG_CANCEL_CURRENT);
Görmek:
http://developer.android.com/reference/android/app/PendingIntent.html#FLAG_CANCEL_CURRENT
GÜNCELLEME 2
Bkz aşağıda cevabını o kullanımına neden daha iyi olduğunu PendingIntent.FLAG_UPDATE_CURRENT
.