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

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

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

Address.getSubAdminArea介绍

暂无

代码示例

代码示例来源:origin: square/assertj-android

public AddressAssert hasSubAdminArea(String area) {
 isNotNull();
 String actualArea = actual.getSubAdminArea();
 assertThat(actualArea) //
   .overridingErrorMessage("Expected sub-admin area <%s> but was <%s>.", area, actualArea) //
   .isEqualTo(area);
 return this;
}

代码示例来源:origin: com.squareup.assertj/assertj-android

public AddressAssert hasSubAdminArea(String area) {
 isNotNull();
 String actualArea = actual.getSubAdminArea();
 assertThat(actualArea) //
   .overridingErrorMessage("Expected sub-admin area <%s> but was <%s>.", area, actualArea) //
   .isEqualTo(area);
 return this;
}

代码示例来源:origin: stackoverflow.com

List<Address> addresses = new Geocoder(<CurrentActivityName>.this,Locale.getDefault()).getFromLocation(cur_lat, cur_lon, 1);
    Address addr= addresses.get(0);
    String Country=addr.getCountryName();
    String  State=addr.getSubAdminArea();
    String  City=addr.getLocality();

代码示例来源:origin: stackoverflow.com

Geocoder gc = new Geocoder(context);

if(gc.isPresent()){
 List<Address> list = gc.getFromLocation(37.42279, -122.08506,1);

 Address address = list.get(0);

 StringBuffer str = new StringBuffer();
 str.append("Name: " + address.getLocality() + "\n");
 str.append("Sub-Admin Ares: " + address.getSubAdminArea() + "\n");
 str.append("Admin Area: " + address.getAdminArea() + "\n");
 str.append("Country: " + address.getCountryName() + "\n");
 str.append("Country Code: " + address.getCountryCode() + "\n");

 String strAddress = str.toString();
}

代码示例来源:origin: stackoverflow.com

StringBuilder _homeAddress = null;
   try{
     _homeAddress = new StringBuilder();
     Address address = null;
     List<Address> addresses = _coder.getFromLocation(_lat,_lon,1);
     for(int index=0; index<addresses.size(); ++index)
     {
       address = addresses.get(index);
       _homeAddress.append("Name: " + address.getLocality() + "\n");
       _homeAddress.append("Sub-Admin Ares: " + address.getSubAdminArea() + "\n");
       _homeAddress.append("Admin Area: " + address.getAdminArea() + "\n");
       _homeAddress.append("Country: " + address.getCountryName() + "\n");
       _homeAddress.append("Country Code: " + address.getCountryCode() + "\n");
       _homeAddress.append("Latitude: " + address.getLatitude() + "\n");
       _homeAddress.append("Longitude: " + address.getLongitude() + "\n\n");
     }
   }
   catch(Exception e){
   }

代码示例来源:origin: prabhat1707/EasyWayLocation

public static String getAddress(Context context, Double latitude, Double longitude, boolean country, boolean fullAddress) {
  String add = "";
  Geocoder geoCoder = new Geocoder(((Activity) context).getBaseContext(), Locale.getDefault());
  try {
    List<Address> addresses = geoCoder.getFromLocation(latitude, longitude, 1);
    if (addresses.size() > 0) {
      if (country) {
        add = addresses.get(0).getCountryName();
      } else if (fullAddress) {
        add = addresses.get(0).getFeatureName() + "," + addresses.get(0).getSubLocality() + "," + addresses.get(0).getSubAdminArea() + "," + addresses.get(0).getPostalCode() + "," + addresses.get(0).getCountryName();
      } else {
        add = addresses.get(0).getLocality();
      }
    }
  } catch (IOException e) {
    e.printStackTrace();
  }
  return add.replaceAll(",null", "");
}

代码示例来源:origin: WangDaYeeeeee/GeometricWeather

result.city = addressList.get(0).getLocality();
if (TextUtils.isEmpty(result.city)) {
  result.city = addressList.get(0).getSubAdminArea();

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

public static String getCityAndCountryFromAddress(Address address) {
  if (address == null) {
    return "";
  }
  String geoCity;
  if((address.getLocality() != null) && !"".equals(address.getLocality())) {
    geoCity = address.getLocality();
  } else {
    geoCity = address.getSubAdminArea();
  }
  if (geoCity == null) {
    geoCity = "";
  }
  String geoCountryDistrict = null;
  if(address.getAdminArea() != null) {
    geoCountryDistrict = address.getAdminArea();
  }
  String geoDistrictOfCity = address.getSubLocality();
  String geoCountryName = address.getCountryName();
  if ((geoDistrictOfCity == null) || "".equals(geoDistrictOfCity) || geoCity.equalsIgnoreCase(geoDistrictOfCity)) {
    if ((geoCountryDistrict == null) || "".equals(geoCountryDistrict) || geoCity.equals(geoCountryDistrict)) {
      return formatLocalityToTwoLines((("".equals(geoCity))?"":(geoCity)) + (("".equals(geoCountryName))?"":(", " + geoCountryName)));
    }
    return formatLocalityToTwoLines((("".equals(geoCity))?"":(geoCity + ", ")) + geoCountryDistrict + (("".equals(geoCountryName))?"":(", " + geoCountryName)));
  }
  return formatLocalityToTwoLines((("".equals(geoCity))?"":(geoCity + " - ")) + geoDistrictOfCity + (("".equals(geoCountryName))?"":(", " + geoCountryName)));
}

代码示例来源:origin: jareddlc/OpenFit

cityName = addresses.get(0).getLocality();
if (cityName == null) {
  cityName = addresses.get(0).getSubAdminArea();

代码示例来源:origin: jareddlc/OpenFit

cityName = addresses.get(0).getLocality();
if (cityName == null) {
  cityName = addresses.get(0).getSubAdminArea();

代码示例来源:origin: stackoverflow.com

try {
  Geocoder geocoder = new Geocoder(this, Locale.getDefault());

  List<Address> addressList = geocoder.getFromLocation(latitude, longitude, 10);
  if (!addressList.isEmpty()) {
    for (Address address : addressList) {
      String result = address.getAdminArea() != null ? address.getAdminArea() : "?";
      result += " | ";
      result += address.getSubAdminArea() != null ? address.getSubAdminArea() : "?";
      result += " | ";
      result += address.getLocality() != null ? address.getLocality() : "?";
      result += " | ";
      result += address.getSubLocality() != null ? address.getSubLocality() : "?";
      result += " | ";
      result += address.getThoroughfare() != null ? address.getThoroughfare() : "?";
      result += " | ";
      result += address.getSubThoroughfare() != null ? address.getSubThoroughfare() : "?";
      Log.i(TAG, result);
    }
  }
} catch (IOException e) {
  Log.e(TAG, "Failed Geocoding.");
}

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

private void updateLocation(Address address) {
  if (address != null) {
    Context context = mContext.getAndroidContext();
    String parts[] = {
      address.getAdminArea(),
      address.getSubAdminArea(),
      address.getLocality(),
      address.getSubLocality(),
      address.getThoroughfare(),
      address.getSubThoroughfare(),
      address.getPremises(),
      address.getPostalCode(),
      address.getCountryName()
    };
    String addressText = "";
    for (int i = 0; i < parts.length; i++) {
      if (parts[i] == null || parts[i].isEmpty()) continue;
      if (!addressText.isEmpty()) {
        addressText += ", ";
      }
      addressText += parts[i];
    }
    String text = String.format("%s : %s", DetailsHelper.getDetailsName(
        context, MediaDetails.INDEX_LOCATION), addressText);
    mListener.onAddressAvailable(text);
  }
}

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

public static PersistableBundle fromAddress(android.location.Address address) {
    if (address == null) {
      return null;
    }
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
      PersistableBundle persistableBundle = new PersistableBundle();
      persistableBundle.putString("country", address.getLocale().getCountry());
      persistableBundle.putString("language", address.getLocale().getLanguage());
      persistableBundle.putString("variant", address.getLocale().getVariant());
      persistableBundle.putString("locality", address.getLocality());
      persistableBundle.putString("subLocality", address.getSubLocality());
      persistableBundle.putString("adminArea", address.getAdminArea());
      persistableBundle.putString("subAdminArea", address.getSubAdminArea());
      persistableBundle.putString("countryName", address.getCountryName());
      return persistableBundle;
    } else {
      return null;
    }
  }
}

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

writeUTF(dos, address.getLocality());
writeUTF(dos, address.getAdminArea());
writeUTF(dos, address.getSubAdminArea());

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

相关文章