Jeff Sharkey の実装に基づくセクション化されたリスト ビューがあります。問題は、リスト ビューの 1 つのセクション (最後のセクション) のみが表示されていることです。セクションを追加する方法は次のとおりです。
SeparatedListAdapter adapter = new SeparatedListAdapter(this);
for (int i = 0; i < groups.size(); ++i) // groups is an ArrayList<ArrayList<Person>>
{
ArrayList<Person> group = groups.get(i);
adapter.addSection("Section test", new MyCustomAdapter(this, R.layout.custom_cell, group));
}
ListView listView = (ListView) findViewById(R.id.myListView);
listView.setAdapter(adapter);