Merhaba Etkinliğim için bir bildirim görüntülendim ve kullanıcı uygulama yeniden başlatıldığında bildirimi tıklattı. Ancak sadece yeniden başlamamasını istiyorum. Örneğin. Bu bir web uygulaması ve kullanıcı bildirimi seçtiğinde ön tarafa gelmesini istiyorum ... ama web sayfasını yenilemeyin. Bu amacı yakalayabilir miyim yoksa yanlış niyetimi mi gönderiyorum? Normalde, ev düğmesine bastığımda ve uygulama simgesini tıklarsanız, uygulama ön plana gelir ve yeniden başlatılmaz/yeniden başlatılmaz. Yani bu istediğim davranış. Herhangi bir fikir ?Android Bildirimi uygulamasına yeniden başlıyor ama devam etmek istiyor
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager)
getSystemService(ns);
//2.Instantiate the Notification
int icon = R.drawable.notification_icon;
CharSequence tickerText = "My App"; // temp msg on status line
long when = System.currentTimeMillis();
Notification notification = new Notification(icon, tickerText, when);
notification.flags |= Notification.FLAG_ONGOING_EVENT;
//3.Define the Notification's expanded message and Intent:
Context context = getApplicationContext();
CharSequence contentTitle = "Notification";
CharSequence contentText = "My app!"; // message to user
Intent notificationIntent = new Intent(this, HelloAndroid2.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
notificationIntent, 0);
notification.setLatestEventInfo(context, contentTitle, contentText,
contentIntent);
//4.Pass the Notification to the NotificationManager:
final int NOTIFICATION_ICON_ID = 1;
mNotificationManager.notify(NOTIFICATION_ICON_ID, notification);
Mükemmel cevap! –