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 应用程序中,我下载图像,然后将它们设置为ImageViews。现在假设我有对 的引用ImageView,我真的可以从中获取图像并使用代码手动将其从内存中释放吗?
ImageView
谁能告诉我如何做到这一点?
谢谢。
bitmap=null;
然后,您可以使用以下方法取回位图:
BitmapFactory.decodeResource(Resources res, int id)
查看 Android 开发者博客,了解有关处理图像加载的教程。这是一个很好的资源。
加载大位图