我正在开发一个应用程序,它需要获取GPS坐标的城市和街道名称,我已经尝试过地理编码器,但它只能在互联网上工作。但即使我没有互联网连接,我想获得位置名称或城市名称。我无法解决问题 下面是我正在使用的代码
if (gps.canGetLocation()) {
latitude = gps.getLatitude();
longitude = gps.getLongitude();
Toast.makeText(
getApplicationContext(),
"Lat = " + String.valueOf(latitude) + "\nLong : "
+ String.valueOf(longitude),
Toast.LENGTH_LONG).show();
Geocoder geocoder = new Geocoder(MainActivity.this, Locale
.getDefault());
try {
addresses = geocoder.getFromLocation(latitude,
longitude, 1);
} catch (IOException e) { // TODO Auto-generated catch block
e.printStackTrace();
}
if (addresses.size() > 0) {
String cityName = addresses.get(0).getAddressLine(0);
String stateName = addresses.get(0).getAddressLine(1);
String countryName = addresses.get(0).getAddressLine(2);
Toast.makeText(
getApplicationContext(),
"Area = " + cityName + "\nCity = " + stateName
+ "\nCountry Name = " + countryName,
Toast.LENGTH_LONG).show();
}
//
if (latitude > 0 && longitude > 0) {
String[] a = { load("C1.txt"), load("C2.txt"),
load("C2.txt") };
for (int j = 0; j < a.length; j++) {
if (a[j].length() > 10) {
SmsManager sms = SmsManager.getDefault();
/*
* sms.sendTextMessage(a[j], null, "Area = " +
* cityName + "\nCity = " + stateName +
* "\nCountry Name = " + countryName, null,
* null);
*/
sms.sendTextMessage(
a[j],
null,
"Lat = " + String.valueOf(latitude)
+ "\nLong : "
+ String.valueOf(longitude),
null, null);
}
}
} else {
Toast.makeText(getApplicationContext(),
"Please enter phone numbers from settings",
Toast.LENGTH_LONG).show();
}
答案 0 :(得分:1)
如果没有互联网,这是行不通的,因为地理编码器(或任何你想要使用的)必须从某种数据源中检索信息。只要您不想在应用程序中存储整个数据库(由于大多数智能手机上的存储空间很小而无法实现),您就必须从服务器检索数据。