我正在尝试使用使用 a 的列表创建一个活动SimpleCursorAdapter
,但它不起作用。我正确地创建了光标,因为当我打印出文本时,所有的值都被打印出来,我知道这个SimpleCursorAdapter
类没有问题,因为当我将它与图像内容提供程序一起使用时,它显示正确。但是,当我尝试将两者放在一起时,当我尝试打开活动时,我的应用程序崩溃了。这是我的源代码:
package com.mao.crypt;
import android.app.ListActivity;
import android.content.Intent;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.View;
import android.widget.ListView;
import android.widget.SimpleCursorAdapter;
public class OpenActivity extends ListActivity{
Cursor cursor;
@Override
public void onCreate(Bundle icicle){
super.onCreate(icicle);
SQLiteDatabase db = new NotesDBHelper(getApplicationContext()).getReadableDatabase();
cursor = db.rawQuery("SELECT _id,title,text FROM notes ORDER BY title ASC", null);
startManagingCursor(cursor);
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, android.R.layout.simple_list_item_2, cursor, new String[]{"title","text"},new int[]{android.R.id.text1, android.R.id.text2});
setListAdapter(adapter);
}
public void onDestroy(){
cursor.close();
}
@Override
public void onListItemClick(ListView l, View v, int position, long id){
cursor.moveToPosition(position);
String title=cursor.getString(0);
Intent data = new Intent();
data.putExtra("title", title);
setResult(RESULT_OK,data);
finish();
}
}
对于如何解决这个问题,有任何的建议吗?