What is 'Context' on Android?

前端 未结 30 2941
南旧
南旧 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:13

    A Context is a handle to the system; it provides services like resolving resources, obtaining access to databases and preferences, and so on. An Android app has activities. Context is like a handle to the environment your application is currently running in. The activity object inherits the Context object.

    For more information, look in Introduction to Android development with Android Studio - Tutorial.

提交回复
热议问题