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 (2014) Basic Android Programming Adding the onClick() Method

Sagar Telang
PLUS
Sagar Telang
Courses Plus Student 1,152 Points

Error while running the app

After adding another fun fact, when i try to run the app, it gives an error saying that "error: cannot resolve symbol variable fact"

Line 29: factLabel.setText(Fact);

Daniel Hartin
Daniel Hartin
18,106 Points

Hi Sagar

Any change you could post your entire code block please hard to tell without it. I would take a wild stab in the dark and suggest checking the capital f in Fact as variables are usually lowercase for the first letter (only common practice in Java you can use uppercase and it will work it's just not the usual way of doing things).

Thanks Daniel

1 Answer

Sagar Telang
PLUS
Sagar Telang
Courses Plus Student 1,152 Points

Hi Daniel,

Thank you very much for your help. It worked!

Sagar