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 trialGeorge Sideris
Courses Plus Student 3,712 PointsI don't understand where the problem is ?
private void animate () {} // javaTester show an error
@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
1,515 PointsI 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();
George Sideris
Courses Plus Student 3,712 PointsThanks for your replay ....