每次最小化应用程序时显示通知
Display notification every time I minimize app
上下文:
我的应用有 5 个活动:
- SplashScreenActivity - 启动服务
- 主要Activity - selects Activity 1,2 或 3
- Activity 1
- Activity 2
- Activity 3
目前我在服务的onCreate方法中创建通知,根据
触摸后显示最近的activity
- Resume application and stack from notification
- 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 并将通知逻辑放在那里。
上下文:
我的应用有 5 个活动:
- SplashScreenActivity - 启动服务
- 主要Activity - selects Activity 1,2 或 3
- Activity 1
- Activity 2
- Activity 3
目前我在服务的onCreate方法中创建通知,根据
触摸后显示最近的activity- Resume application and stack from notification
- 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 并将通知逻辑放在那里。