我想将“All String”数据(从“Cursor”获取)放入“Array”中。但我不知道为什么“数组”只返回一个值?我迷路了。有人能帮我吗?这是我的代码段
private String[] getOneColumn(){
String[] myArray = null;
Cursor cursor = mDbHelper.fetchAllNotes();
startManagingCursor(cursor);
if(cursor.moveToFirst()){
String myTitle = cursor.getString(cursor.getColumnIndex(SBooksDbAdapter.KEY_TITLE_RAW));
myArray = myTitle.split(";");
}
return myArray;
}