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.
我不知道这些是否相关,但我有一个应用程序在从 onDestroy() 恢复后不会让我点击其中一个按钮
这是一个已知的问题?侦听器设置为 onCreate()
并且从不设置为 null
onDestroy是活动生命周期的结束。这意味着下次打开您的活动时,它不会“恢复”它正在创建。这可能有点令人困惑,因为即使正在重新创建活动 onResume 仍然被调用。您可能想查看活动生命周期,以便更好地描述活动在不同活动状态中移动时实际发生的情况。