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

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

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

Though

8条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2020-11-22 02:20

    Context provides information about the Actvity or Application to newly created components.

    Relevant Context should be provided to newly created components (whether application context or activity context)

    Since Activity is a subclass of Context, one can use this to get that activity's context

提交回复
热议问题