API を使用して保留中のインテントからブロードキャストを受信するために使用されるブロードキャスト レシーバーがありますrequestLocationUpdates
。
メソッドで受け取ったコンテキストにonReceive(..)
は、呼び出しアクティビティのすべての UI 要素とオブジェクトが含まれています (ウォッチ ウィンドウを使用して確認できます)。
これらの 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*/
}
}