获取gps位置一次5分钟的android Eclipse源代码

时间:2017-09-21 03:28:50

标签: android eclipse gps location

有些曾经可以给我一个Eclipse源代码来构建一个App android来获取gps位置一次5分钟android Eclipse源代码 非常感谢!

1 个答案:

答案 0 :(得分:0)

LocationManager locationManager = (LocationManager) getSystemService (LOCATION_SERVICE);
LocationListener listener = new LocationListener() { }     
locationManager.requestLocationUpdates(GPS_PROVIDER, intervall , distance, listener);

interval参数用于在指定时间(以毫秒为单位)内获取位置更新。