如何在intentService中获取设备位置?

时间:2012-01-24 23:12:31

标签: android location

我有警报,每隔15分钟调用我的intentService,在intentService中如何获取设备位置? (注意:我的intentService中有一个wakeLock)

1 个答案:

答案 0 :(得分:2)

欢迎您尝试getLastKnownLocation(),但可能会null。并且IntentService无法等待某些位置修复到达。

相反,您需要一个定期的Service,以便处理这种情况。我创建了一个(LocationPoller),another developer has improved upon