re-open background application via notification item

前端 未结 6 1692
生来不讨喜
生来不讨喜 2020-12-10 07:14

I got an app with tabs and a notification bar entry, when I send it to background (click on home button) and try to re-open the application via click on the notification ba

6条回答
  •  -上瘾入骨i
    2020-12-10 08:02

    Put these two lines. This will resume currently paused activity:

    notificationIntent.setAction(Intent.ACTION_MAIN);
    notificationIntent.addCategory(Intent.CATEGORY_LAUNCHER);
    

提交回复
热议问题