如果应用程序已经在运行,它还会启动吗?

发布于 2025-01-08 19:19:49 字数 156 浏览 0 评论 0原文

我正在制作一个应用程序,我正在对它进行最后的修改,我想知道,如果用户在应用程序运行时按下“主页”按钮,然后单击图标尝试再次运行它,应用程序会怎样做?它将把当前的应用程序带到前面吗?它会运行一个新实例吗?我想知道,因为我的应用程序有很多线程,如果用户运行我的应用程序的 2 个实例,则会耗尽电池寿命。

I am making an app and I am putting the final touches on it and i was wondering, if the user presses the "home" button while the application is running, then clicks on the icon to try to run it again, what will the app do? Will it bring the current app to the front? Will it run a new instance? I am wondering because my app has a lot of threads and if the user was running 2 instances of my app it would kill their battery life.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

已下线请稍等 2025-01-15 19:19:49

这取决于您的 Activity 的 android:launchMode,在 Manifest 中设置。

使用默认设置,系统始终在目标任务中创建活动的新实例并将意图路由到它。

有关详细信息,请参阅参考

It depends on the android:launchMode of your activity, set in the Manifest.

With the default setting the system always creates a new instance of the activity in the target task and routes the intent to it.

See the reference for detailed info.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文