如何在android中移动和动画图像?

时间:2012-05-15 10:46:33

标签: android animation imageview

我试图在图像视图中从上到下移动图像然后返回..但是图像似乎停留在该位置而根本不移动。我尝试了动画类型,但它没有工作..代码..

    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();

1 个答案:

答案 0 :(得分:1)

要移动图像,您可以在此处尝试表面视图是一个很好的教程,如何移动图像

看到这个链接会对你有所帮助

http://www.edu4java.com/androidgame/androidgame3.html