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.
活动时位图会自动回收finish()吗?
finish()
还是我们必须调用recycle()位图onDestroy()?
recycle()
onDestroy()
在 Pre Android 3.0 中你需要recycle它,因为位图存储在native heap.
recycle
native heap
只要您没有通过任何仍然存在的对象引用它们:它们会被 GC 收集垃圾,而无需进一步交互。
在 Pre-honeycomb 设备上
finalizer()
在 Post honeycomb 上,它的标准就像任何 java 对象一样