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:返回上一个活动
如何跳回 Android 中的上一个活动?我如何找到哪个是以前的活动?
finish()在当前活动中返回上一个活动调用。
finish()
当您调用finish()时,正在恢复的结果活动将是您之前的活动。
有关更多详细信息,请研究活动生命周期。它将让您更好地了解活动和活动之间的导航......
并且,如果您没有在之前的活动中调用完成()。只需完成()当前活动,它会自动显示以前的活动。(不推荐,因为整个活动都将存储在内存中。)