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.
我正在尝试使用另一个活动之上的意图来启动一个新的活动。我将 android:launchMode 设置为 singleTask,因为我只想要一个这样的实例。当我启动活动时,底层活动的生命周期方法会像这样快速连续触发:
onPause() onResume() onPause()
我已经搜索了很长时间没有找到解决方案。有没有人见过类似的东西?
我正在使用 startActivityForResult 启动意图。谢谢你的帮助!