List<Address> addresses = new Geocoder(a).getFromLocation(latitude,longitude, 1);
Address adr = addresses.get(0)
//receive different paramters of an address
postalCode = a.getPostalCode();
city = a.getLocality();
county = a.getAdminArea();
country = a.getCountryName();
street = a.getThoroughfare();
しかし、家屋番号を受け取るにはどうすればよいですか?
注意!a.getAddressLine(0) は、通りの名前と番号を 1 つの文字列で返します (例: MyAddress 101b)。番地(例:101b)だけを受け取る方法はありますか?