我正在使用数据库,并且正在尝试使用表的每一行填充 ListView。我已经成功地创建和查询了数据,但是我无法使用 SimpleCursorAdapter 在 ListView 中显示任何内容。
public class History extends ListActivity {
SQLiteDatabase db;
DbHelper DbHelper;
ListView lv;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.history);
DbHelper = new DbHelper(this);
db = DbHelper.getWritableDatabase();
lv = getListView();
final String[] from = { DbHelper.TYPE, DbHelper.TITLE, DbHelper.CONTENT };
final String[] column = { DbHelper.C_ID, DbHelper.TYPE, DbHelper.TITLE,
DbHelper.CONTENT };
final int[] to = { R.id.list_row_title, R.id.list_row_content };
Cursor cursor = db.query(DbHelper.TABLE_NAME, column, null, null, null,
null, null);
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this,
R.layout.history_list_row, cursor, from, to);
lv.setAdapter(adapter);
/*
* Display as Toast for development purposes
*/
// move to first row
cursor.moveToFirst();
// move to the next item each time
while (cursor.moveToNext()) {
// get string and column index from cursor
String name = cursor
.getString(cursor.getColumnIndex(DbHelper.TYPE));
String title = cursor.getString(cursor
.getColumnIndex(DbHelper.TITLE));
String content = cursor.getString(cursor
.getColumnIndex(DbHelper.CONTENT));
Toast.makeText(this,
"Title: " + title + "\n" + "Content: " + content,
Toast.LENGTH_SHORT).show();
}
cursor.close();
}
}
这是我的自定义 ListView 行,用于显示数据库中的 3 个字符串
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/list_row_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Title"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/list_row_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Content"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
android:id="@+id/list_row_type"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Type"
android:textAppearance="?android:attr/textAppearanceSmall" />
Toast 消息显示完美,但 ListView 中没有出现任何内容。