I am trying to get the users current location using the LocationManager. I have done a lot of research and can\'t seem to find anyone with the same problem. T
LocationManager
LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE); if (manager != null) { List providers = manager.getAllProviders(); for (String provider : providers) { manager.requestLocationUpdates(provider, TIME_BW_UP, DISTANCE_BW_UP, locationListener); } }