本文整理了Java中android.location.Address.<init>()
方法的一些代码示例,展示了Address.<init>()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Address.<init>()
方法的具体详情如下:
包路径:android.location.Address
类名称:Address
方法名:<init>
暂无
代码示例来源:origin: robolectric/robolectric
@Test
public void getFromLocationReturnsTheOverwrittenListLimitingByMaxResults() throws IOException {
ShadowGeocoder shadowGeocoder = shadowOf(geocoder);
List<Address> list = Arrays.asList(new Address(Locale.getDefault()), new Address(Locale.CANADA));
shadowGeocoder.setFromLocation(list);
List<Address> result = geocoder.getFromLocation(90.0, 90.0, 1);
assertThat(result).hasSize(1);
result = geocoder.getFromLocation(90.0, 90.0, 2);
assertThat(result).hasSize(2);
result = geocoder.getFromLocation(90.0, 90.0, 3);
assertThat(result).hasSize(2);
}
代码示例来源:origin: com.github.japgolly.android.test/robolectric
private Address makeAddress() {
Address address = new Address(Locale.getDefault());
shadowOf(address).setSimulatedHasLatLong(hasLatitude, hasLongitude);
return address;
}
代码示例来源:origin: sytolk/TaxiAndroidOpen
JSONObject result = results.getJSONObject(i);
Address addr = new Address(Locale.getDefault());
代码示例来源:origin: org.robolectric/shadows-maps
private Address makeAddress() {
Address address = new Address(Locale.getDefault());
address.setLatitude(simulatedLatitude);
address.setLongitude(simulatedLongitude);
ReflectionHelpers.setField(address, "mHasLatitude", hasLatitude);
ReflectionHelpers.setField(address, "mHasLongitude", hasLongitude);
return address;
}
代码示例来源:origin: MKergall/osmbonuspack
Address gAddress = new Address(mLocale);
String displayName = "";
if (!jResult.has("point") || !jResult.has("name"))
代码示例来源:origin: thuryn/your-local-weather
return null;
Address address = new Address(locale);
address.setLatitude(result.getDouble(WIRE_LATITUDE));
address.setLongitude(result.getDouble(WIRE_LONGITUDE));
代码示例来源:origin: MKergall/osmbonuspack
Address gAddress = new Address(mLocale);
if (!jResult.has("lat") || !jResult.has("lon") || !jResult.has("address"))
return null;
代码示例来源:origin: grzegorznittner/chanu
return lookupAddress(latitude, longitude, false);
address = new Address(locale);
代码示例来源:origin: thuryn/your-local-weather
public static android.location.Address toAddress(PersistableBundle persistableBundle) {
if (persistableBundle == null) {
return null;
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
String language = persistableBundle.getString("language");
String country = persistableBundle.getString("country");
String variant = persistableBundle.getString("variant");
Locale addressLocale = new Locale(language, country, variant);
android.location.Address address = new android.location.Address(addressLocale);
address.setLocality(persistableBundle.getString("locality"));
address.setSubLocality(persistableBundle.getString("subLocality"));
address.setAdminArea(persistableBundle.getString("adminArea"));
address.setSubAdminArea(persistableBundle.getString("subAdminArea"));
address.setCountryName(persistableBundle.getString("countryName"));
return address;
} else {
return null;
}
}
内容来源于网络,如有侵权,请联系作者删除!