开发者

Android - Clicking on notification in status bar binds the intent with the target activity

开发者 https://www.devze.com 2022-12-24 11:03 出处:网络
I have created an activity which sends a number of notifications t开发者_开发问答o status bar. Each notification contains an intent with a bundle. Here is the code:

I have created an activity which sends a number of notifications t开发者_开发问答o status bar. Each notification contains an intent with a bundle. Here is the code:

 String ns = Context.NOTIFICATION_SERVICE;
    NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
    int icon = R.drawable.icon;     
    long when = System.currentTimeMillis();
    Notification notification = new Notification(icon, "Test Notification", when);


    Context context = getApplicationContext();      

    Bundle bundle = new Bundle();
    bundle.putString("action", "view");
    Intent notificationIntent = new Intent(this, MainActivity.class);
    notificationIntent.putExtras(bundle);

    PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, Intent.FLAG_ACTIVITY_NEW_TASK);
    notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);     
    mNotificationManager.notify(1, notification);

When user clicks this notifications, I read the bundle string "action" and performs that action. Here is the code:

 Bundle bundle = this.getIntent().getExtras();

    if(bundle != null)
    {
        String action = bundle.getString("action");
            performAction(action)
    }

Everything works as expected. But, when I minimize the app using "arrow" button on device and then press and hold home button and clicks on my app icon the application starts and performs the same last action which have been performed by clicking the last notification. I figured out that when we click the app icon the application starts with last intent triggered by the notification. Can anyone help in this?


First, "an activity which sends a number of notifications to status bar" is a bad design for a production application. An Activity already has the user interface in front of the user and therefore does not need Notifications. Even if you were doing this from a Service, the vast majority of Android applications should not need more than one Notification at a time.

To your specific problem, you think you are creating several PendingIntents, but you are not. By default, a distinct PendingIntent is only created when the underlying Intent is materially different from the Intent used by another outstanding PendingIntent. Yours only differs by the extras. If you are going to have several outstanding PendingIntents, you will need to have them be on different Intents, where those Intents differ by component, action, data (Uri), or categories.


I have found the solution by myself:

Intent intent = getIntent();
int flags = intent.getFlags();
boolean launchedFromHistory = ((flags & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) != 0);

This way we can check where is activity started from.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号