the question is about imageview in android:
There is an imageview, after I call method like
imageview.setImageDrawable(drawable)
or
imageview.setImageBitmap(bitmap)
then a drawable will be drawned on the imageview, I want to know that before I call another setXXXDrawable/Bitmap method to the same imageview , the drawable that had been drawned on this imageview has or has not been changed by other operation? or the image showned on the imageview has been changed since my last call?
Any help will be appreciated~ thks!