私は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);
}