Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Animations and Transitions Animations Basics Choreograph an Animation

Finally, create a third set to play the first two sets one after another. The alpha and move animations should go first,

Finally, create a third set to play the first two sets one after another. The alpha and move animations should go first, followed by the scale animations. Don't forget to start this last set to run everything!

CodeChallenge.java
ObjectAnimator fadeInAnimator = ObjectAnimator.ofFloat(button, View.ALPHA, 0, 1);
fadeInAnimator.setDuration(1000);

ObjectAnimator moveUpAnimator = ObjectAnimator.ofInt(button, "top", buttonTop, 16);
moveUpAnimator.setDuration(1000);

ObjectAnimator scaleXAnimator = ObjectAnimator.ofFloat(button, "scaleX", 1.0f, 1.5f);
scaleXAnimator.setDuration(300);

ObjectAnimator scaleYAnimator = ObjectAnimator.ofFloat(button, "scaleY", 1.0f, 1.5f);
scaleYAnimator.setDuration(300);

// Add code below!
AnimatorSet scaleFab = new AnimatorSet();  
scaleFab.playTogether(fadeInAnimator, moveUpAnimator);  

AnimatorSet scaleFab1 = new AnimatorSet();  
scaleFab1.playTogether(scaleXAnimator, scaleYAnimator); 

AnimatorSet scaleFab2 = new AnimatorSet();  
scaleFab2.playSequentially(fadeInAnimator, moveUpAnimator); 
scaleFab2.start();
Crescens Kob
Crescens Kob
19,946 Points
scaleFab2.playSequentially(scaleFab); 
scaleFab2.playSequentially(scaleFab1); 
scaleFab2.start();

4 Answers

ObjectAnimator fadeInAnimator = ObjectAnimator.ofFloat(button, View.ALPHA, 0, 1); fadeInAnimator.setDuration(1000);

ObjectAnimator moveUpAnimator = ObjectAnimator.ofInt(button, "top", buttonTop, 16); moveUpAnimator.setDuration(1000);

ObjectAnimator scaleXAnimator = ObjectAnimator.ofFloat(button, "scaleX", 1.0f, 1.5f); scaleXAnimator.setDuration(300);

ObjectAnimator scaleYAnimator = ObjectAnimator.ofFloat(button, "scaleY", 1.0f, 1.5f); scaleYAnimator.setDuration(300);

// Add code below! AnimatorSet scaleFab = new AnimatorSet();
scaleFab.playTogether(fadeInAnimator, moveUpAnimator);

AnimatorSet scaleFab1 = new AnimatorSet();
scaleFab1.playTogether(scaleXAnimator, scaleYAnimator);

AnimatorSet scaleFab2 = new AnimatorSet();
scaleFab2.playSequentially(fadeInAnimator, moveUpAnimator); scaleFab2.start();

Thank you so much.

@ Dennis Muguti You have to pass in scaleFab and scaleFab1 in your example to give you this animator set

AnimatorSet scaleFab2 = new AnimatorSet(); scaleFab2.playSequentially(scaleFab, scaleFab1); scaleFab2.start();

owk thank you

can you send the whole code lm bit confused hr

ObjectAnimator fadeInAnimator = ObjectAnimator.ofFloat(button, View.ALPHA, 0, 1); fadeInAnimator.setDuration(1000);

ObjectAnimator moveUpAnimator = ObjectAnimator.ofInt(button, "top", buttonTop, 16); moveUpAnimator.setDuration(1000);

ObjectAnimator scaleXAnimator = ObjectAnimator.ofFloat(button, "scaleX", 1.0f, 1.5f); scaleXAnimator.setDuration(300);

ObjectAnimator scaleYAnimator = ObjectAnimator.ofFloat(button, "scaleY", 1.0f, 1.5f); scaleYAnimator.setDuration(300);

// Add code below! AnimatorSet scaleFab = new AnimatorSet();
scaleFab.playTogether(fadeInAnimator, moveUpAnimator);

AnimatorSet scaleFab1 = new AnimatorSet();
scaleFab1.playTogether(scaleXAnimator, scaleYAnimator);

AnimatorSet scaleFab2 = new AnimatorSet();
scaleFab2.playSequentially(scaleFab, scaleFab1 ); scaleFab2.start();

i only had to change the last part of your code