I want to get the location-name inside onLocationChanged(Location location)()
method. We can get the Latitude
and Longitude
from onLocationChanged(Location location) as location.getLatitude();
and location.getLongitude();
But i need the location name. It has no method of getting location name. Can I get that?
I am doing in this way :
public void onLocationChanged(Location location) {
double la = location.getLatitude();
double lo= location.getLongitude();
// location Name?
}