Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在后台启动活动?也就是说,我不想在前面显示它,而是希望它在后台启动并希望它在另一个 Activity“下”运行。
这可能吗?
您在寻找服务吗?
Activity 应该在前台运行,而 Service 应该在后台运行
只能有一个顶级活动!
您不能同时启动两个活动,但是您可以做的是在第一个后台启动您想要的活动,然后在该活动的 onCreate 方法中调用前台活动,这样您就可以在顶部拥有所需的活动,在顶部拥有另一个活动背景准备好在需要时被带到前台。
您的mainActivity---->打开Activity1(应该在后台)-> Activity2(Activity2来自FG,而Activity1进入BG)。