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 Activity 中实现诸如 onPause()、onResume()、onDestroy() 等生命周期方法?
提前致谢!
如果您需要在这些方法中执行任何操作,那么您应该处理,否则无需处理。在服务中,您需要释放 onDestroy() 方法中的所有资源。