如果应用程序已经在运行,它还会启动吗?
我正在制作一个应用程序,我正在对它进行最后的修改,我想知道,如果用户在应用程序运行时按下“主页”按钮,然后单击图标尝试再次运行它,应用程序会怎样做?它将把当前的应用程序带到前面吗?它会运行一个新实例吗?我想知道,因为我的应用程序有很多线程,如果用户运行我的应用程序的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您的 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.