每次最小化应用程序时显示通知

Display notification every time I minimize app

上下文:

我的应用有 5 个活动:

目前我在服务的onCreate方法中创建通知,根据

触摸后显示最近的activity
  1. Resume application and stack from notification
  2. How to open last activity from notification status bar?

问题

setOngoing method Notification.Builder is annoying - is always here, independent if my app is in foreground or not. So I change to the setAutoCancel 方法,但仅适用于首次使用。 示例:

我 运行 我的应用程序 - 启动画面 activity(显示通知)-> 主要 activity -> select Activity 1 - 最小化。现在单击通知 - 带来 Activity 1(确定),但通知被关闭并且从未显示。

问题

How to display notification, every time I minimize app?

简单覆盖 onPause 并将通知逻辑放在那里。