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

Why is this not working... it works in the app and is exactly how the video goes or am I missing something?

tton loadPuppiesButton = (Button) findViewById(R.id.puppiesButton); String buttonLabel = ""; Resources resources = getResources(); buttonLabel = resources.getString(R.string.morePuppies); loadPuppiesButton.setText(buttonLabel);

CodeChallenge.java
Button loadPuppiesButton = (Button) findViewById(R.id.puppiesButton);
String buttonLabel = "";
Resources resources = getResources();
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>

2 Answers

Hi. Have you tried calling getString() directly? (without calling getResources() first)

String buttonLabel = getString(R.string.morePuppies);

getString() is a shortcut for getResources.getString()here. Maybe this is what they want here. These challenges tend to only accept a specific solution, even though sometimes others are possible.

Lol. Thanks a ton... tunnel vision is the worst.

No problem, we've all been there :)

Instead of giving buttonLabel value twice you should just give it a value once like this.

Button loadPuppiesButton = (Button) findViewById(R.id.puppiesButton);
Resources resources = getResources();
String buttonLabel = resources.getString(R.string.morePuppies);
loadPuppiesButton.setText(buttonLabel);

Even after making this change it still won't pass me. I do not understand as I'm done with the weather app portion, or 90% done and this code works in AS.