イメージビューで画像を上から下に移動しようとしていますが、画像はその場所にとどまり、まったく動かないようです。私はアニメーションタイプを試しましたが、うまくいきませんでした..ここにコードがあります..
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();