Java-Android:getfromLocationName()在地址列表中返回大小0
作者:互联网
我有一个位置数据库.当我尝试将其转换为坐标时,将其放置在地图上时会出错.我的地址类型地址列表的大小为零.我研究了这个话题.我所有的清单权限均正确.我的手机已连接到互联网.我已经重启了手机.我知道有一个Google问题,解决方案也无济于事.位置准确.请帮忙.
这是错误消息:
android.database.CursorIndexOutOfBoundsException:已请求索引0,大小为0
private void setUpMap() {
DatabaseHandler db = new DatabaseHandler(this);
Cursor c = db.fetchAllAddresses();
String place = c.getString(c.getColumnIndex("name"));
Geocoder geocoder = new Geocoder(this, Locale.getDefault());
List<android.location.Address> addresses = new ArrayList();
try {
addresses = geocoder.getFromLocationName(place,1);
} catch (IOException e) {
e.printStackTrace();
}
android.location.Address add = addresses.get(0);
double lat = add.getLatitude();
double lng = add.getLongitude();
mMap.addMarker(new MarkerOptions().position(new LatLng(lat,lng)).title("Marker"));
}
编辑这是fetchAllAddresses()
public Cursor fetchAllAddresses() {
SQLiteDatabase db = this.getWritableDatabase();
Cursor mCursor = db.query(TABLE_CONTACTS, new String[]{ "rowid _id", KEY_NAME,},null, null, null,null, null);
if (mCursor != null) {
mCursor.moveToFirst();
}
return mCursor;
}
解决方法:
看起来您的光标没有任何结果,并且mCursor.moveToFirst();在这种情况下返回false.
通常,您将需要检查mCursor.moveToFirst();的结果,就好像它返回false一样,您知道您的光标为空.
空光标是一个单独的问题,很难从代码中看出为什么会发生这种情况.
为了在Cursor为空时摆脱CursorIndexOutOfBoundsException,这是一种解决方法:
您可以对光标上的getCount()进行检查,以确保它大于零.
另外,请确保关闭游标,否则会发生内存泄漏.
private void setUpMap() {
DatabaseHandler db = new DatabaseHandler(this);
Cursor c = db.fetchAllAddresses();
//check for empty cursor
if (c.getCount() > 0){
String place = c.getString(c.getColumnIndex("name"));
Geocoder geocoder = new Geocoder(this, Locale.getDefault());
List<android.location.Address> addresses = new ArrayList();
try {
addresses = geocoder.getFromLocationName(place,1);
} catch (IOException e) {
e.printStackTrace();
}
android.location.Address add = addresses.get(0);
double lat = add.getLatitude();
double lng = add.getLongitude();
mMap.addMarker(new MarkerOptions().position(new LatLng(lat,lng)).title("Marker"));
}
c.close(); //get rid of memory leak!
}
标签:android,java,dictionary,location,geocoding 来源: https://codeday.me/bug/20191011/1893260.html