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 Getting Resources from the Context

Soumitra Mehrotra
Soumitra Mehrotra
1,468 Points

Are resources.getString() and getString same??

How come in mainActivity we had to define "Resources" intance to use getString(int id) method i.e,
Resources resources = getResources(); String key = resources.getString(R.string.key_name);

While in StoryActivity we just used getString(int id) i.e, String name = intent.getStringExtra(getString(R.string.key_name))

Even the Quiz following this video uses getString() without making any instance?? How come?? Any help would be appreciated

1 Answer

Seth Kroger
Seth Kroger
56,413 Points

Activities have their own getString() method that is essentially the same thing. Using Resources.getString() is useful if you are in a class that doesn't otherwise have access to it.