Difference between getContext() , getApplicationContext() , getBaseContext() and “this”

前端 未结 8 2185
臣服心动
臣服心动 2020-11-22 02:15

What is the difference between getContext() , getApplicationContext() , getBaseContext() , and \"this\"?

Though

8条回答
  •  执笔经年
    2020-11-22 02:39

    A Context is:

    • an abstract class whose implementation is provided by the Android system.
    • It allows access to application-specific resources and classes, as well as up-calls for application-level operations such as launching activities, broadcasting and receiving intents, etc.

提交回复
热议问题