android.location.Address.setAddressLine()方法的使用及代码示例

x33g5p2x  于2022-01-15 转载在 其他  
字(4.6k)|赞(0)|评价(0)|浏览(134)

本文整理了Java中android.location.Address.setAddressLine()方法的一些代码示例,展示了Address.setAddressLine()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Address.setAddressLine()方法的具体详情如下:
包路径:android.location.Address
类名称:Address
方法名:setAddressLine

Address.setAddressLine介绍

暂无

代码示例

代码示例来源:origin: sytolk/TaxiAndroidOpen

addr.setAddressLine(0, route + " " + streetNumber);

代码示例来源:origin: MKergall/osmbonuspack

gAddress.setAddressLine(addressIndex++, jResult.get("name").getAsString());
gAddress.setThoroughfare(jResult.get("name").getAsString());
displayName = jResult.get("name").getAsString();
gAddress.setAddressLine(addressIndex++, jResult.get("postcode").getAsString());
gAddress.setPostalCode(jResult.get("postcode").getAsString());
displayName += ", " + jResult.get("postcode").getAsString();
gAddress.setAddressLine(addressIndex++, jResult.get("city").getAsString());
gAddress.setLocality(jResult.get("city").getAsString());
displayName += ", " + jResult.get("city").getAsString();
gAddress.setAddressLine(addressIndex++, jResult.get("country").getAsString());
gAddress.setCountryName(jResult.get("country").getAsString());
displayName += ", " + jResult.get("country").getAsString();

代码示例来源:origin: MKergall/osmbonuspack

gAddress.setAddressLine(addressIndex++, jAddress.get("road").getAsString());
  gAddress.setThoroughfare(jAddress.get("road").getAsString());
  gAddress.setAddressLine(addressIndex++, jAddress.get("postcode").getAsString());
  gAddress.setPostalCode(jAddress.get("postcode").getAsString());
  gAddress.setAddressLine(addressIndex++, jAddress.get("city").getAsString());
  gAddress.setLocality(jAddress.get("city").getAsString());
} else if (jAddress.has("town")){
  gAddress.setAddressLine(addressIndex++, jAddress.get("town").getAsString());
  gAddress.setLocality(jAddress.get("town").getAsString());
} else if (jAddress.has("village")){
  gAddress.setAddressLine(addressIndex++, jAddress.get("village").getAsString());
  gAddress.setLocality(jAddress.get("village").getAsString());
  gAddress.setAddressLine(addressIndex++, jAddress.get("country").getAsString());
  gAddress.setCountryName(jAddress.get("country").getAsString());

代码示例来源:origin: thuryn/your-local-weather

address.setAddressLine(i, split[i]);

代码示例来源:origin: org.robolectric/shadows-maps

@Implementation
public List<Address> getFromLocation(double latitude, double longitude, int maxResults) throws IOException {
 wasCalled = true;
 this.lastLatitude = latitude;
 this.lastLongitude = longitude;
 if (shouldSimulateGeocodeException) {
  throw new IOException("Simulated geocode exception");
 }
 Address address = makeAddress();
 address.setAddressLine(0, addressLine1);
 address.setLocality(city);
 address.setAdminArea(state);
 address.setPostalCode(zip);
 address.setCountryCode(countryCode);
 return Arrays.asList(address);
}

代码示例来源:origin: com.github.japgolly.android.test/robolectric

@Implementation
public List<Address> getFromLocation(double latitude, double longitude, int maxResults) throws IOException {
  wasCalled = true;
  this.lastLatitude = latitude;
  this.lastLongitude = longitude;
  if (shouldSimulateGeocodeException) {
    throw new IOException("Simulated geocode exception");
  }
  Address address = makeAddress();
  address.setAddressLine(0, addressLine1);
  address.setLocality(city);
  address.setAdminArea(state);
  address.setPostalCode(zip);
  address.setCountryCode(countryCode);
  return oneElementList(address);
}

代码示例来源:origin: grzegorznittner/chanu

int numAddressLines = dis.readInt();
for (int i = 0; i < numAddressLines; ++i) {
  address.setAddressLine(i, readUTF(dis));

代码示例来源: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());
}

相关文章