我使用Geocoder從lan/lat座標獲取地址。 問題是地址是本地語言(通常是街道名稱)。我怎樣才能把它設置爲只有英文?Geocoder的英文而不是本地語言
我使用:
Geocoder geocoder = new Geocoder(Context, Locale.getDefault());
嘗試:
Geocoder geocoder = new Geocoder(Context, Locale.ENGLISH);
Geocoder geocoder = new Geocoder(Context, Locale.US);
沒有運氣。
'地理編碼器地理編碼器=新的地理編碼(MainApplication.getAppContext(),Locale.ENGLISH);'爲我工作。 API 16 –