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.
如果我覆盖我的主 Activity 的 onDestroy() 方法以便在屏幕旋转时回收位图,我应该在 myBitmap.recycle() 之前还是之后调用 super.onDestroy()?有关系吗?
顺序无所谓。onDestroy() 的基本实现除了让你调用它之外什么都不做。一些派生类(例如 ListActivity)可能会做一些事情,但只要您在调用派生类后不尝试使用它们的任何状态就可以了。