我正在使用Android注释库,我想使用广播接收器将数据从服务传递到活动。我想使用Android注释的let loadGames season resource =
if season.Year = 14 then GamesFile14.Load(resource).Rows |> mapRows14
else if season.Year = 15 then GamesFile15.Load(resource).Rows |> mapRows15
else GamesFile1617.Load(resource).Rows |> mapRows1617
,我的尝试与此SO question
感谢任何帮助。
答案 0 :(得分:0)
在Activity
中,添加此接收方法:
@Receiver(actions = "GPSLocationUpdates", local = true)
void receiveLocationUpdates() {
// TODO
}
并照例Intent
Service
Intent intent = new Intent("GPSLocationUpdates");
LocalBroadcastManager.getInstance(context).sendBroadcast(intent);