1

私はデータベースで作業しており、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();
}

}

これは、データベースから 3 つの文字列を表示するためのカスタム ListView 行です

<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" />

トースト メッセージは完全に表示されますが、ListView には何も表示されません。

4

2 に答える 2

2

ここでいくつかの問題に気づいています。

初め、

final int[] to = { R.id.list_row_title, R.id.list_row_content };

する必要があります

final int[] to = { R.id.list_row_type, R.id.list_row_title, R.id.list_row_content };

次に、アダプタを正しく設定していません。リストビューを取得してアダプタを設定する代わりに、アダプタを直接設定できます。

SimpleCursorAdapter adapter = new SimpleCursorAdapter(this,
        R.layout.history_list_row, cursor, from, to);
setListAdapter(adapter);

第三に、ループの後でカーソルを閉じています。

//Closes the Cursor, releasing all of its resources and making it completely invalid.
cursor.close();

したがって、リストビューにアイテムが表示されるまでに、カーソルには関連付けられた行がなくなります。

于 2013-02-22T01:06:59.387 に答える
0

while ループで TextView のテキストを設定する必要があります。

 TextView tv1=(TextView)findViewById(R.id.list_row_content);
 tv1.setText(content);
于 2013-02-22T02:38:17.623 に答える