Skip to content Skip to sidebar Skip to footer

Animate ImageView

Currently I'm developing a game. This is the details of my game: User should choose the correct image object. I want the images to accelerate from left to right. and when they rea

Solution 1:

You can try to use Frame Animation :

In your java file :

imageView.setBackgroundResource(your Resource);
AnimationDrawable animte = (AnimationDrawable) imageView.getBackground();
animte.start();

Probably, this will help you .


Post a Comment for "Animate ImageView"