2010-12-20 17 views

答えて

1

ViewFlipperの中にImageViewsのカップルを使用することができます。

1

このコードは、ビュー360度回転する。

RotateAnimation rotateAnimation = new RotateAnimation(360,0); 
rotateAnimation.setDuration(ROTATE_TIME); 
myView.startAnimation(rotateAnimation); 

が繰り返すようにするには:

anim.setRepeatCount(Animation.INFINITE)。

あなたは動きもアニメーション全体を通して加速させたい場合は、私は数ヶ月前に尋ねたこの質問をチェックアウト:

Make ScaleAnimation move evenly, or figure out how it moves

+0

をありがとうはそれ、 – santhosh

+0

その作業罰金を得たPLOX受け入れます正しい答えとしての答え:) – pgsandstrom

関連する問題