I want to get following values from Latitude and Longitude in android
You are looking for the term Geocoding.
The short story is you need to do:
Geocoder geocoder = new Geocoder(this, Locale.getDefault()); List addresses = geocoder.getFromLocation(lat, lng, 1);
To do more you should read up on the Geocoder here.