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 an Interactive Story App Intents and Multiple Activities Using String Resources

Rares Mosescu
Rares Mosescu
2,001 Points

Can't get passed Task 2 of this challenge.

I did like in the video but still not working. What did I miss?

CodeChallenge.java
Button loadPuppiesButton = (Button) findViewById(R.id.puppiesButton);
Resources resources = getResources();
String buttonLabel = resources.getString(R.string.morePuppies);
loadPuppiesButton.setText(buttonLabel);
strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="morePuppies">See More Puppies</string>
</resources>

1 Answer

Rafael Miranda
Rafael Miranda
17,121 Points

Hi, you don't need to get the resource. You just need to use the getString method from the Context class...

Button loadPuppiesButton = (Button) findViewById(R.id.puppiesButton);
String buttonLabel = getString(R.string.morePuppies);
loadPuppiesButton.setText("LOAD");