I start of with this in Activity:
adapter = new ItemAdapter(Items.this, items, totals); setListAdapter(adapter);
Now here is ItemAd
Why don't you just join both lists?
List list1 = new ArrayList(); a.add("Item 1"); a.add("Item 2"); List list2 = new ArrayList(); b.add("Item 3"); b.add("Item 4"); // Append content of list2 to list1 list1.addAll(list2);
Then you can create your adapter as usual, with a single List.