ImageView の ImageResource を変更し、その変更を古い ImageResource と新しい ImageResource からフェード/ブレンドすることは可能ですか?
もう少し明確にするために、画像をフェードインさせたくありません。以下のコード例を使用すると、元の画像が消え、新しい画像がフェードインするためです。新しい画像を古い画像にブレンドさせたいのです。
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);