数据库中Cursor的问题

我做了一个list显示Sqlite数据库中查询的数据,为什么如果cursor.close()会不显示
Cursor cursor=dbhelper.getReadableDatabase().rawQuery("select * from contact_table",null);
SimpleCursorAdapter adapter=new SimpleCursorAdapter(rootview.getContext(),R.layout.list_item,cursor,new String[]{"name","phone"},new int[]{R.id.name,R.id.phone}, CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER);
list1.setAdapter(adapter);
cursor.close();

在onCreate()中没有关闭游标,因为需要和ListView进行数据关联,关闭curosr,会导致List无数据
所以需要在最后关闭数据库
@Override
public void onDestroy() {
super.onDestroy();
if (dbhelper!=null)
{
dbhelper.close();
}
}

还是没明白呀,游标明明是在给控件设置适配器之后才关的呀