Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have five images and I need to do the horizontal animation from left to right with fade effect how can i do this in android please help me to solve this.

share|improve this question

1 Answer

asume ur ImageView named 'myView'. here is a snippet:

 TranslateAnimation trans = new TranslateAnimation(0, 400, 0, 0);
 trans.setDuration(3000);

 AlphaAnimation alpha = new AlphaAnimation(0, 1);

 AnimationSet combine = new AnimationSet(true);
 combine.addAnimation(trans);
 combine.addAnimation(alpha);

 myView.startAnimation(combine);

u can see a view go from left-top conner move horizonal to right with fade out at same time but the view position will restore to origin after animation. to make view really moved. u need listen animation and set view x, y manually.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.