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 Build a Simple Android App (retired 2014) Pretty Little Things Animating the Crystal Ball

Leonardo Calderon
Leonardo Calderon
1,936 Points

Did 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
Louis Sankey
22,595 Points

As 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
Leonardo Calderon
1,936 Points

The problem was the location of the code. I had to move it up one line.

Thanks for your help!!!!