android在SurfaceView上翻译ImageView

时间:2012-06-28 12:39:07

标签: android animation imageview surfaceview translate-animation

我有两个小部件,ImageView和SurfaceView。

SurfaceView包含相机预览。有时候我必须在SurfaceView上显示Bitmap(我使用ImageView来显示这个图像)。没关系。但是,我还必须翻译这个位图。 当我开始动画时,ImageView就消失了。

我使用TranslateAnimation:

TranslateAnimation slide = new TranslateAnimation(fromX, toX, fromY, toY);
slide.setDuration(1000);
slide.setFillAfter(true);
image.startAnimation(slide);

我想知道,为什么ImageView会消失,以及如何修复它。 有人解决了类似的问题吗?

0 个答案:

没有答案