What is 'Context' on Android?

前端 未结 30 2920
南旧
南旧 2020-11-21 04:46

In Android programming, what exactly is a Context class and what is it used for?

I read about it on the developer site, but I am unable to understand it

30条回答
  •  臣服心动
    2020-11-21 05:10

    The class android.content.Context provides the connection to the Android system and the resources of the project. It is the interface to global information about the application environment.

    The Context also provides access to Android Services, e.g. the Location Service.

    Activities and Services extend the Context class.

提交回复
热议问题