I am implementing GPS Tracker for getting Longitude and latitude from http://www.androidhive.info/2012/07/android-gps-location-manager-tutorial/.
To get value Longi
You're not updating received location in onLocationChanged(), try this:
@Override public void onLocationChanged(Location location) { this.location = location; getLatitude(); getLongitude(); }