LocationManager requestLocationUpdates minTime OR minDistance
问题 I'm using Android's LocationManager and its method requestLocationUpdates like this: locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 3000, 10, this); As I found out both the conditions of minTime and minDistance have to be met for location update, but I need to get update every 3 seconds or 10 meters. I tried to put 2 requests like this: locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 3000, 0, this); locationManager.requestLocationUpdates