如何从前台服务导航回应用程序上一个屏幕(单击按钮)
How to navigate back to app previous screen from Foreground Service(Button click)
我将使用浮动 window 计时器启动 YouTube。
时间结束后,我想回到应用程序。目前我正在通过 startIntent(MainActivity) 执行此操作,但它打开了一个新的应用程序,这是一个问题,我想打开以前打开的片段。
我在我的 App
中使用了 Single Activity Navigation Component Architecture
在您的意图中添加标志
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_ACTIVITY_SINGLE_TOP);
我将使用浮动 window 计时器启动 YouTube。
时间结束后,我想回到应用程序。目前我正在通过 startIntent(MainActivity) 执行此操作,但它打开了一个新的应用程序,这是一个问题,我想打开以前打开的片段。
我在我的 App
中使用了 Single Activity Navigation Component Architecture在您的意图中添加标志
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_ACTIVITY_SINGLE_TOP);