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 trialstavros zografos
312 PointsI can 't solve this coding challenge
Can someone tell me why isn't this code working.Here is my code:
Button loadPuppiesButton = (Button) findViewById(R.id.puppiesButton);
String buttonLabel = "";
loadPuppiesButton.setText("LOAD");
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name='morePupies'>See More Puppies</string>
</resources>
3 Answers
Steve Hunter
57,712 PointsHi there,
That's not working because you haven't spelled puppies correctly. Change to:
<string name="morePuppies">See More Puppies</string>
I've used double quotes too - not sure if that's a requirement, though.
Steve.
stavros zografos
312 PointsOhhhhhhh.I can't believe that the whole thing didn't work because of one letter
Steve Hunter
57,712 PointsSo easily done!
stavros zografos
312 PointsBut anyways thanks a lot!!