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.
我有一个大问题。
我创建了一个以编程方式更新位图的服务。当创建一个新的位图时,以前的位图会保留在 RAM 内存中,因此经过一段时间后,此过程会占用大量 RAM。
我怎样才能保持相同的占用RAM?
非常感谢
像这样的东西
if (mBitmap != null){ mBitmap.recycle(); mBitmap = null; } mBitmap = newBitmap;