0

我有一项活动,我需要显示从两个 sqlite 表中获取的两个列表。对于每个列表,我都在写一个customCursorAdapter谁能指导我找到一个有用的例子,或者只是如何使这样的场景成为可能?谢谢你。

4

2 回答 2

1

这是包含两个列表的布局-

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="2" >

<ListView
    android:id="@+id/lvOne"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1" >
</ListView>

<ListView
    android:id="@+id/lvTwo"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1" >
</ListView>

</LinearLayout>

你的应该扩展 Activity(不是 ListActivity 类)的类应该类似于这个——

public class TwoListActivity extends Activity {

ListView lvOne ;
ListView lvTwo ;

MyAdapter adapter ; // Initialise your adapter

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_two_list);

    lvOne = (ListView) findViewById(R.id.lvOne);
    lvTwo = (ListView) findViewById(R.id.lvTwo);

    lvOne.setAdapter(/*** Create and set your adapter****/);
    lvTwo.setAdapter(/*** Create and set your adapter****/);

}

希望这可以帮助。

于 2013-05-09T08:12:27.693 回答
0

您应该从 db 获取数据并将其存储在两个单独的 arrayLists 中,然后将每个传递给相应的 listView 适配器(您应该为每个 listView 有单独的适配器实例)

于 2013-05-09T06:59:41.593 回答