What is 'Context' on Android?

前端 未结 30 2934
南旧
南旧 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

    In Java, we say this keyword refers to the state of the current object of the application.
    Similarly, in an alternate we have Context in Android Development.

    This can be defined either explicitly or implicitly,

    Context con = this;
    
    getApplicationContext();
    
    getBaseContext();
    
    getContext();
    

提交回复
热议问题