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 Adding a Second Activity

FAIZEL KHAN
FAIZEL KHAN
2,328 Points

Why we pass this parameter in the Intend class?

Why we pass this parameter in the Intend class? Why we need that?

1 Answer

Kourosh Raeen
Kourosh Raeen
23,733 Points

The Intent constructor needs a Context as the first argument to determine the package the second activity class can be found in. Since we are inside an activity and the Activity class is a subclass of the Context class we can use this, which is the current activity, as the context.