0
ImageView iv;
Drawable d = imageView.getDrawable();
if (d instanceof BitmapDrawable) {
if (d is not resources) // How to check ??? iv.setImageResources(resId);
((BitmapDrawable) d).getBitmap().recycle();
}
我想除了回收繪圖資源位圖的繪製...如何知道是否從位圖圖像視圖或資源
是的,你不能檢查它是否來自資源,這是最好的解決方案。 – Techfist