getLastLocation 最近多久了?
How recent is getLastLocation?
我目前正在为自己制作一个 Android 应用程序,为了好玩,并希望获得当前位置。 也许我会在 Play 商店上发布这个。
我正在阅读获取当前位置的最方便的方法,但由于注释 here, I decided to go the Google way. Eventually, my research got me on a getLastLocation
example。
然而,让我感到困扰的是这多久更新一次?有没有办法知道这个位置有多新?当我调用该方法时,设备会尝试更新 "last location" 然后 return 给我吗?
我试图研究它,但我得到的最佳答案是
Returns the best most recent location currently available.
what bugs me is how often does this get updated?
可能永远不会。
Is there a way to know how recent this location is?
a getTime()
method on Location
告诉您确定 Location
的系统时间。
When I call that method, will the device try to update "last location" then return it to me?
没有
我目前正在为自己制作一个 Android 应用程序,为了好玩,并希望获得当前位置。 也许我会在 Play 商店上发布这个。
我正在阅读获取当前位置的最方便的方法,但由于注释 here, I decided to go the Google way. Eventually, my research got me on a getLastLocation
example。
然而,让我感到困扰的是这多久更新一次?有没有办法知道这个位置有多新?当我调用该方法时,设备会尝试更新 "last location" 然后 return 给我吗?
我试图研究它,但我得到的最佳答案是
Returns the best most recent location currently available.
what bugs me is how often does this get updated?
可能永远不会。
Is there a way to know how recent this location is?
a getTime()
method on Location
告诉您确定 Location
的系统时间。
When I call that method, will the device try to update "last location" then return it to me?
没有