In my android app I need to get current GPS location of the user at the start of the application only if location has change from the previous location. But the problem is w
You can stop the LocationListener by making its object to null after stoping LocationListener locationManager.removeUpdates(mLocListener);, that is mLocListener = null; when you want it to stop fetching the Latitudes and Longitudes.