android 奇怪的 onCreate / onDestroy 平衡
有没有办法告诉 Android 我希望对 startActivity() 的后续调用都恢复目标活动,而不是一遍又一遍地创建它?有什么解决方法吗?
谢谢
is there a way to tell Android that I would like subsequent calls to startActivity() all resume the target activity rather than creating it over and over again ? Any workarounds ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您的需求,尝试使用
FLAG_ACTIVITY_CLEAR_TOP
或FLAG_ACTIVITY_REORDER_TO_FRONT
创建时你的意图:Depending on your needs, try using
FLAG_ACTIVITY_CLEAR_TOP
orFLAG_ACTIVITY_REORDER_TO_FRONT
when creating your intent: