我有一个活动需要显示从两个sqlite表中获取的两个列表。对于每个列表,我正在写一个customCursorAdapter
任何人都可以指导我一个有用的例子,或者只是如何使这样的场景成为可能?谢谢。
答案 0 :(得分: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类(Not 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****/);
}
希望这有帮助。
答案 1 :(得分:0)
您应该从db获取数据并将其存储在两个单独的arrayLists中,然后将每个数据传递给相应的listView适配器(您应该为每个listView分别使用适配器实例)