I have created a MyApplication
class that extends Application
and have defined it in the manifest.
Within MyApplication
's onCreate()
method, is there any difference between using this
or getApplicationContext()
in order to get the application context?
(Presumably, the latter just exists because Application
is a Context
, but I just need to be sure.)