本文整理了Java中android.location.Address.setThoroughfare()
方法的一些代码示例,展示了Address.setThoroughfare()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Address.setThoroughfare()
方法的具体详情如下:
包路径:android.location.Address
类名称:Address
方法名:setThoroughfare
暂无
代码示例来源:origin: MKergall/osmbonuspack
if (jResult.has("name")){
gAddress.setAddressLine(addressIndex++, jResult.get("name").getAsString());
gAddress.setThoroughfare(jResult.get("name").getAsString());
displayName = jResult.get("name").getAsString();
代码示例来源:origin: thuryn/your-local-weather
address.setThoroughfare(a.optString(WIRE_THOROUGHFARE));
address.setSubLocality(a.optString(WIRE_SUBLOCALITY));
address.setPostalCode(a.optString(WIRE_POSTALCODE));
代码示例来源:origin: MKergall/osmbonuspack
if (jAddress.has("road")){
gAddress.setAddressLine(addressIndex++, jAddress.get("road").getAsString());
gAddress.setThoroughfare(jAddress.get("road").getAsString());
代码示例来源:origin: grzegorznittner/chanu
address.setThoroughfare(readUTF(dis));
int numAddressLines = dis.readInt();
for (int i = 0; i < numAddressLines; ++i) {
代码示例来源:origin: CUTR-at-USF/OpenTripPlanner-for-Android
public CustomAddress(Address address) {
super(address.getLocale());
for (int i = 0; i <= address.getMaxAddressLineIndex(); i++){
super.setAddressLine(i, address.getAddressLine(i));
}
super.setFeatureName(address.getFeatureName());
super.setAdminArea(address.getAdminArea());
super.setSubAdminArea(address.getSubAdminArea());
super.setLocality(address.getLocality());
super.setSubLocality(address.getSubLocality());
super.setThoroughfare(address.getThoroughfare());
super.setSubThoroughfare(address.getSubThoroughfare());
super.setPostalCode(address.getPostalCode());
super.setCountryCode(address.getCountryCode());
super.setCountryName(address.getCountryName());
super.setLatitude(address.getLatitude());
super.setLongitude(address.getLongitude());
super.setPhone(address.getPhone());
super.setUrl(address.getUrl());
super.setExtras(address.getExtras());
}
内容来源于网络,如有侵权,请联系作者删除!