是否有可靠的方法从服务中获取Context ?

我想为ACTION_PHONE_STATE_CHANGED注册一个广播接收器,但我不需要我的应用程序总是得到这个信息,所以我没有把它放在Manifest中。

然而,当我需要这些信息时,我不能让GC杀死广播接收器,所以我在服务中注册了广播接收器。

因此,我需要一个Context来调用registerReceiver()。 当我不再需要ACTION_PHONE_STATE_CHANGED时,我注销了它。

任何建议吗?


当前回答

服务是一个上下文

其他回答

服务是一个上下文

As服务本身就是一个上下文

你甚至可以通过:

Context mContext = this;

OR

Context mContext = [class name].this;  //[] only specify the class name
// mContext = JobServiceSchedule.this; 

如果需要服务上下文,则使用此关键字。如果你想要活动上下文,你可以通过创建静态变量来访问它

public static Context context;

在活动onCreate()

context=this;

现在您可以在服务内部访问该上下文

Service扩展了ContextWrapper,而ContextWrapper扩展了Context。因此,服务是一个上下文。 在服务中使用'this'关键字。

Service扩展了ContextWrapper contexttwrapper扩展了Context

所以…

Context context = this;

(服务或活动类别)