I am using Geocoder to get address from lan/lat coordinates. The problem is that the address is in local language (the street name usually). How can I set it to be only in E
create a new locate instance like this:
Locale aLocale = new Builder().setLanguage("en").setScript("Latn").setRegion("RS").build(); Geocoder geocoder = new Geocoder(context,aLocale);
https://developer.android.com/reference/java/util/Locale.Builder.html