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 (Retired) Intents and Multiple Activities Getting Data from an Intent

Fahmi Eshaq
Fahmi Eshaq
3,002 Points

Why was "static final" set as public?

I don't see the point of using "public" access modifier with static final String TAG = StoryActivity.class.getSimpleName()? Why didn't we use "private" since TAG gets existent class name?

1 Answer

Scott Junner
Scott Junner
9,010 Points

I'm guessing. And I can't think of a scenario because I haven't needed it yet. But it may be useful to access the tag for a starting activity when testing another activity reached through an intent, to make sure data is being passed between the right activities.