我试图在图像视图中从上到下移动图像然后返回..但是图像似乎停留在该位置而根本不移动。我尝试了动画类型,但它没有工作..代码..
setContentView(R.layout.game);
AnimationSet set=new AnimationSet(true);
Animation animation=new TranslateAnimation(0,2000,0,1220);
ImageView img =new ImageView(this);
img.setImageResource(R.drawable.dig);
animation.setDuration(3000);
animation.setFillAfter(true);
set.addAnimation(animation);
set.startNow();
答案 0 :(得分:1)
要移动图像,您可以在此处尝试表面视图是一个很好的教程,如何移动图像
看到这个链接会对你有所帮助