Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I created a broadcast reciever that creates a notification, by clicking a notification an activity launched, that activity is launching but I couldnt able to view it, I am using the following code:

private NotificationManager notificationManager;
    @Override
public void onReceive(Context context, Intent intent) {
    if (notificationManager == null) {
        notificationManager = (NotificationManager) context
                .getSystemService(Context.NOTIFICATION_SERVICE);
    }
    NotificationCompat.Builder builder = new NotificationCompat.Builder(context)
            .setTicker("Its Ticker")
            .setSmallIcon(R.drawable.ic_launcher)
            .setContentTitle("Notification Title")
            .setContentText("Its Content")
            .setAutoCancel(true)
            .setContentIntent(PendingIntent.getActivity(context,0,new Intent(context, NotificationDialog.class).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK),0));
    notificationManager.notify("interstitial_tag", 0, builder.getNotification());

}

Note: NotificationDialog.java is my activity, this activity is running as I debugged but not viewing. trying for hours but couldnot find any answer, any suggestion will be appreciated.

share|improve this question
1  
Try: .setContentIntent(PendingIntent.getActivity(context,0,new Intent(context, NotificationDialog.class).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP),0)); – Martijn Van Mierloo Jul 12 '12 at 9:40
Thank you that worked. post it as answer, so I accept it. – Muhammad Maaz Jul 12 '12 at 10:23

1 Answer

up vote 0 down vote accepted

Use FLAG_ACTIVITY_CLEAR_TOP instead of FLAG_ACTIVITY_CLEAR_TASK

private NotificationManager notificationManager;
    @Override
public void onReceive(Context context, Intent intent) {
    if (notificationManager == null) {
        notificationManager = (NotificationManager) context
                .getSystemService(Context.NOTIFICATION_SERVICE);
    }
    NotificationCompat.Builder builder = new NotificationCompat.Builder(context)
            .setTicker("Its Ticker")
            .setSmallIcon(R.drawable.ic_launcher)
            .setContentTitle("Notification Title")
            .setContentText("Its Content")
            .setAutoCancel(true)
            .setContentIntent(PendingIntent.getActivity(context,0,new Intent(context, NotificationDialog.class).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP),0));
    notificationManager.notify("interstitial_tag", 0, builder.getNotification());

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.