1

我正在尝试将数据从数据库传输到 ListView。以前,我使用 SimpleCursorAdapter 从包含所有数据的游标中传输数据,但现在,我需要将数据从五个列表传输到 5 个 ListView 中,我将游标拆分为这些列表视图。我认为我不能使用 ArrayAdapter,因为我的数据库有多个列。我不太确定如何创建自己的适配器,尽管我已经读过我可以使用它。我只是不知道如何从 BaseAdapter 创建自己的适配器。

这是我的片段布局文件

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent">
          /* ....(I skipped much of the irrelevant code here) */
     </LinearLayout>

    <ListView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/mainList"
            android:layout_gravity="left|center_vertical"
            android:layout_weight="1"/>
    <ListView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/lunchList"
            android:layout_gravity="left|center_vertical"
            android:layout_weight="1"/>
    <ListView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/dinnerList"
            android:layout_gravity="left|center_vertical"
            android:layout_weight="1"/>
    <ListView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/snackList"
            android:layout_gravity="left|center_vertical"
            android:layout_weight="1"/>
    <ListView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/exerciseList"
            android:layout_gravity="left|center_vertical"
            android:layout_weight="1"/>
</LinearLayout>

片段中的代码(我目前用于传输数据)

    //Append Test Case to Database
    db.createEntry(test);

    //SimpleCursorAdapter Sequence
    cursor = db.getAllEntries();
    String[] from = {DESCRIPTION, CALORIES, SERVINGSIZE, DATE};
    int[] to = {R.id.description, R.id.calories, R.id.servingSize, R.id.dateBox};
    adapt = new SimpleCursorAdapter(getActivity(), R.layout.journal_inner_view, cursor,    from, to, 1);
    ListView listItem = (ListView) getActivity().findViewById(R.id.mainList);
    listItem.setAdapter(adapt);
    //To be implemented for delete and edit commands /*listItem.getOnItemLongClickListener();*/

SQL 来创建我的数据库

db.execSQL("CREATE TABLE IF NOT EXISTS " + TABLE_JOURNAL + " (_id integer primary key autoincrement, " //NON-NLS-1$
                        + JournalDBAdapter.MEAL + " TEXT, " //NON-NLS-1$
                        + JournalDBAdapter.DESCRIPTION + " TEXT, " //NON-NLS-1$
                        + JournalDBAdapter.DATE + " TEXT, " //NON-NLS-1$
                        + JournalDBAdapter.CALORIES + " INTEGER, " //NON-NLS-1$
                        + JournalDBAdapter.SERVINGSIZE + " INTEGER" //NON-NLS-1$
                        + " );"); //NON-NLS-1$ //NON-NLS-2$);
4

2 回答 2

0

很简单,将数据库中的结果存储到对象数组列表中。使用数组适配器将这些添加到您的列表视图中。我想不出更简单的方法...

于 2013-08-02T06:54:04.147 回答
0

为此,我正在使用在我的应用程序CustomAdapter中扩展的 a。ArrayAdapter

检查此链接以获取示例。

于 2013-08-02T06:57:26.800 回答