如何在android中找到Cache中Cache的最新更新值

时间:2014-11-10 11:08:37

标签: android gps

我有什么:

我从GPS缓存中获取最后更新的值,如下所示

Location location;

location = appLocationService.getLocation(LocationManager.NETWORK_PROVIDER);
if(location!=null){
    latitude=location.getLatitude();
    longitude=location.getLongitude();
} 

我想做什么:

  1. 如何找出GPS中最后更新的缓存不超过一个 小时前
  2. 如何找出GPS中最后更新的缓存不超过一个 一天前

1 个答案:

答案 0 :(得分:0)

位置类有一个名为getTime()的方法,它为您提供接收GpsLocation的时间,因此将其与当前时间进行比较将为您提供比较,如果兑现位置已过时。