Is it possible to change a ImageView's ImageResource and make the change fade / blend from the old and new ImageResource and if so how ?
To be a bit more clear I do not want the image to fade in, because using the below example code would make the original image dissapear, and the new image fade in. I want the new image to blend in over the old one:
ImageView v = // ... the ImageView that needs to be have a new image
Animation anim = new AlphaAnimation(0.0f, 1.0f);
v.setImageResource(new_imageResource);
anim.setDuration(1000);
anim.setFillAfter(true);
anim.setInterpolator(new LinearInterpolator());
v.startAnimation(anim);