0

私は2つのテキストビューを隣り合わせにして、データベースからテキストビューにタイトルと日付であるKEY_TITLEとKEY_CDATEが必要です.Androidのデフォルトレイアウトを使用してListViewを使用してこれを行いましたが、2つのTextViewを含む独自のレイアウトを作成したいと思います. 1行に1つのチェックボックス(隣り合わせ)。データベースを使用してこれを行う方法を誰か教えてもらえますか?
ここにxmlファイルがあります

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:background="@drawable/myyellow"
>

<ListView android:id="@+id/android:list"
      android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
</LinearLayout>  

これは、リストを埋めるためのコードです

private void fillData() {  
    Cursor notesCursor = mDbHelper.fetchAllNotes();  
    startManagingCursor(notesCursor);

    String[] from = new String[]{NotesDbAdapter.KEY_TITLE,NotesDbAdapter.KEY_CDATE};

    int[] to = new int[]{android.R.id.text1,android.R.id.text2};

    SimpleCursorAdapter notes =
        new SimpleCursorAdapter(this,android.R.layout.simple_list_item_2, notesCursor, from, to);
    setListAdapter(notes);
}
4

1 に答える 1

0

http://www.androidhive.info/2012/02/android-custom-listview-with-image-and-text/

上記のチュートリアルは、カスタム リスト ビューを作成するためのガイドです。クラスを作成し、データベースの各行のインスタンスを作成してから、カスタム レイアウトを使用して ListView にデータを表示します。画像とチェックボックスを使用して設定する場合との違いは最小限です。

于 2013-03-30T13:29:35.063 に答える