我需要获取应用程序的坐标...我是通过使用LocationManager
来完成的LocationManager locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
现在我需要执行以下任务: -
答案 0 :(得分:3)
在选中/取消选中您提供的复选框时,请使用requestLocationUpdates和removeUpdates。
存储第一个位置坐标,并在onLocationChanged中继续使用distanceTo API检查距离。
不确定为什么还需要其他任何东西。