Android: getfromLocationName() returns 地址列表中的大小 0
Android: getfromLocationName() returns size 0 in Address List
我有一个位置数据库。当我尝试将它们转换为坐标以便将它们放置在地图上时,我遇到了错误。我的地址类型地址列表的大小为零。我研究了这个话题。我所有的清单权限都是正确的。我的 phone 已连接到互联网。我重新启动了 phone。我知道存在 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();
的结果,就好像它 returns 假一样,你知道你有一个空游标。
空光标是一个单独的问题,很难从这段代码中判断为什么会发生这种情况。
为了在 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!
}
我有一个位置数据库。当我尝试将它们转换为坐标以便将它们放置在地图上时,我遇到了错误。我的地址类型地址列表的大小为零。我研究了这个话题。我所有的清单权限都是正确的。我的 phone 已连接到互联网。我重新启动了 phone。我知道存在 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();
的结果,就好像它 returns 假一样,你知道你有一个空游标。
空光标是一个单独的问题,很难从这段代码中判断为什么会发生这种情况。
为了在 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!
}