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

Laith Mohammad
Laith Mohammad
6,569 Points

Why didn't we use "this" instead of declaring an empty Context mVariable?

Why didn't we use "this" instead of declaring an empty Context mVariable?

1 Answer

Seth Kroger
Seth Kroger
56,413 Points

You can only use this if the object is a Context, or sub-class of Context. The sub-classes you'd use in writing Android apps are top-level things: Activity, Application, and Service, as well as sub-classed variations on those. Other common Android components like Fragments and ListAdapters aren't sub-classes of Context. You either need to pass it a Context or use a getContext()/getActivity() method if the class has one (like Fragment).

Laith Mohammad
Laith Mohammad
6,569 Points

Makes sense, but need to reach Android Fragments course to gain better understanding of it probably, thanks for your answer.