Android Get Application Context
When we are inside an Activity, and we need the application context we can use
1 |
getApplicationContext() |
method. But what if we are not inside an Activity and we need the application context? Well, I will explain in this tutorial how you can get the context of the application outside an Activity. You have to create…