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 Property Animation

George Sideris
PLUS
George Sideris
Courses Plus Student 3,712 Points

I don't understand where the problem is ?

private void animate () {} // javaTester show an error

CodeChallenge.java
 @Bind(R.id.imageView) ImageButton fab;

      private void animate (){
        fab.setScaleX(0);
        fab.setScaleY(0);
        fab.animate().scaleX(1).scaleY(1).start();
    }

    @OnClick(R.id.imageView)
    public void onAlbumArtClick(View view) {
        animate();
    }

2 Answers

marioganzer
marioganzer
1,515 Points

I guess you are a litte confussed. In the code challenge you should not create a new method "animate()", it goes about to use the animate-method that is already define for every object. You also don't need to bind it with butterKnife.

Try: imageView.animate();