FusedLocationClient not calling onLocationResult
问题 I'm creating a location client at the moment, currently i have public void startUpdatingLocationProcess(Context context) { parentContext = context; if (mFusedLocationClient == null){ mFusedLocationClient = LocationServices.getFusedLocationProviderClient(parentContext); LocationRequest mLocationRequest = new LocationRequest(); mLocationRequest.setInterval(5000); mLocationRequest.setFastestInterval(5000); mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY); if (ContextCompat