Get Context in a Service Get Context in a Service android android

Get Context in a Service


Service extends ContextWrapper which extends Context. Hence the Service is a Context.Use 'this' keyword in the service.


  1. Service extends ContextWrapper
  2. ContextWrapper extends Context

So....

Context context = this;

(in Service or Activity Class)