我从ImageView中释放内存时遇到问题。
我在Android 7上测试了我的应用程序并且我通过设置imageView.setImageBitmap(null)
释放内存并在之后使用System.gc()
,但在Android 5上我发现内存泄漏并且我不知道我能做什么,我尝试使用bitmap.recycle()
,但它也无法使用。
答案 0 :(得分:0)
使用此
System.runFinalization();
Runtime.getRuntime().gc();
System.gc();