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.
在活动的过程中可以通过调用 this.OnResume() 来强制 onResume 事件吗?或者我应该实现另一个由 OnResume 和第一个成员调用的过程?
实现在您的覆盖中调用的另一个过程onResume()。后者不打算由您调用,它是一种方便的方法,可在其状态更改为resume. 很喜欢onCreate()直通onDestroy()。
onResume()
resume
onCreate()
onDestroy()
@SK9 所说的,还特别是因为您必须在覆盖 onResume 方法时调用 super.onResume() ,因此您无法控制后台发生的事情(视图刷新等)。