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.
Bitmap 有一个recycle方法,但是如果我们不再需要它,我们是否必须显式调用它?
recycle
例如,一个ImageView现在有一个位图。当用户单击一个按钮时,它将为 ImageView 设置一个新的位图。
ImageView
我们是否必须在分配新的位图之前回收原始位图?
是的,如果您的目标设备是Android较旧的3.0. 这样可以避免你在OutOfMemoryException.
Android
3.0
OutOfMemoryException
注意:在android 3本机堆中分配位图内存之前。从 GC 的角度来看,java 对象将保留低内存。
android 3