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 应用程序中,我使用 Imageview 来显示图像。但是我想在活动结束时适当地释放它。我在某个地方读到了你可以imgview.setImageDrawable(null);用来释放它的地方。但我想在活动结束时这样做。是否有一些类似on destroy或on end我可以覆盖的功能,以便我可以在那里释放它?
imgview.setImageDrawable(null);
on destroy
on end
谢谢
实际上有onDestroyin ,但是除非您在代码中的其他地方引入了内存泄漏,否则您Activity不需要像那样为 null 。Drawable
onDestroy
Activity
Drawable