我有一个广播接收器,用于使用 API 从待处理的意图接收广播requestLocationUpdates
。
我在该onReceive(..)
方法中收到的上下文包含调用活动的所有 UI 元素和对象(我可以使用 Watch Window 看到)。
是否有任何方式/方法可以访问这些 UI 元素或上下文中包含的任何对象?
这是一个片段:
MainActivity {
//Initialize a pending intent
locationmanagerobject.requestLocationUpdates(provider,0,0,pendingintent);
//registering broadcast reciver
}
broadcastReciverClass {
onReceive(Context context, Intent intent) {
/*I want to gain access to the objects of the main Activity. I can
see them in context if I use the watch window to monitor the
context object. I want to find a way to be able to access them and use them*/
}
}