0

我想要两个并排的文本视图,我想要 KEY_TITLE 和 KEY_CDATE 是标题和日期从数据库到我的文本视图中。我已经通过使用 android 默认布局使用 ListView 做到了这一点,但我想创建自己的布局,它应该包含两个 TextView 和一行中的一个复选框(彼此并排)。所以谁能告诉我如何使用数据库来做到这一点?
这是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 回答