I dont know difference between them, I sometimes use this, sometimes activityame.this, sometimes getAplicationContext() when android needs context passed.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
|
|
||||
|
|
|
this - is used when you want to reference the object you are currently in. For instance when you're setting up a new class and you want to declare the initial value of your private variables you could do:
getApplicationContext() - Returns the context of the single, global Application object of the current process. Some classes cannot call this, and I've never used it, if I need to get the context of an Activity I'm in, I will use:
Also I would never use getApplicationContext(); and cast it to your Application class, as you cannot guarantee that it will match-up. The other one I'm not too sure on ^^ |
|||
|
|