I have the below code to convert lat, long to human readable address. Now iam getting full details including street name. How can i get only city, state, country? I don\'t want
Have a look at Address (javadoc) which is returned from the geocoder.
This has separate methods like getLocality() to return the city org getCountry() to return the country name etc.