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

Cal Song
Cal Song
13,934 Points

Keep getting illegal start of expression

That is my code.

I don't see anywhere wrong with my code but still getting the illegal expression error.

Any thoughts?

CodeChallenge.java
// Use the variable named 'imageView'

imageView.animate();

private void animate() {
  imageView.animate().scaleX(2).scaleY(2).start();
}

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey Cal,

It's because you are 'creating' a method (animate()) that the challenge did not ask for.

The method animate() has been created behind the scenes for the challenge, and does not require you to code it. You do have the correct answer for all three tasks, it's just encased in the method you wrote.

So, just delete everything (including the first call to the method) except the line:

imageView.animate().scaleX(2).scaleY(2).start();

and everything will pass.

Keep Coding! :) :dizzy: