resuming an activity from a notification

前端 未结 7 2179
刺人心
刺人心 2020-11-30 12:24

I have a notification in the status bar for my app:

    Notification notification = new Notification(R.drawable.icon, null, System.currentTimeMillis());

            


        
7条回答
  •  情歌与酒
    2020-11-30 12:55

    I use:

    notificationIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);
    notificationIntent.setAction(Intent.ACTION_MAIN);
    

    Not sure these are the values you need to set, but the answer is in those methods/flags.

提交回复
热议问题