Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Leonardo Calderon
1,936 PointsDid I miss something?
I need to: Define a method called 'animateFrog()' and put the existing line of code that declares the 'frogImage' variable inside the curly braces of the new method. Make the method public, return nothing (void), and have no parameters.
and I did:
public void animateFrog() { ImageView frogImage = (ImageView) findViewById(R.id.frog); }
Thanks...,
2 Answers

Louis Sankey
22,595 PointsAs far as I can tell you didn't miss anything. I copy and pasted your code twice into my code challenge and it worked fine. Did you put your code inside of the main activity and after the onCreate method?

Leonardo Calderon
1,936 PointsThe problem was the location of the code. I had to move it up one line.
Thanks for your help!!!!