I am reusing ImageView
s for my displays, but at some point I don’t have values to put it.
So how to clear an ImageView
in Android?
I’ve tried:
mPhotoView.invalidate();
mPhotoView.setImageBitmap(null);
None of them have cleared the view, it still shows previous image.