How to clear ImageView correctly?
imgview.setImageResource(0);
or
imgview.setImageDrawable(null);
You can use frequently it works:
imageView.setImageResource(0);
no you need to unbindDrawables, you can do it by setting iview.setImageDrawable(null);