I have an ImageView
with a source image set in the xml using the following syntax:
<ImageView
android:id="@+id/articleImg"
style="@style/articleImgSmall_2"
android:src="https://stackoverflow.com/questions/2974862/@drawable/default_m" />
Now I need to change this image programmatically. What I need to do is delete the old image and add a new one though. What I have done is this:
myImgView.setBackgroundResource(R.drawable.monkey);
It works but I noticed android stacks the new image on top of the old one (dont ask me how I found out it’s not relevant for the discussion :). I definitely need to get rid of the old one before setting the new image.
How can I achieve that?