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 trialYokesh Elumalai
1,255 PointsFinally, 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!
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();
4 Answers
Dennis Muguti
6,797 PointsObjectAnimator 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();
Melody Mudehwe
3,282 PointsThank you so much.
Lincoln Takudzwa Ruwambara
4,860 Points@ 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();
Dennis Muguti
6,797 Pointsowk thank you
Dennis Muguti
6,797 Pointscan you send the whole code lm bit confused hr
Lincoln Takudzwa Ruwambara
4,860 PointsObjectAnimator 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
Crescens Kob
19,946 PointsCrescens Kob
19,946 Points