Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您可以通过两种方式订阅 requestLocationUpdates
什么时候建议一个,什么时候另一个?
如果需要位置更新的组件仅在组件存在时才需要更新——比如说,一个活动——我会使用这种LocationListener方法。
LocationListener
如果需要特别更新位置的组件不会出现——比如说IntentService——我会使用PendingIntent. 在这种情况下,您不能使用LocationListener,因为内存中没有任何内容可以监听位置。
IntentService
PendingIntent