我使用此适配器和来自Web服务的数据
填充列表视图final SimpleAdapter adapter = new SimpleAdapter(this, items,
android.R.layout.simple_list_item_2,
new String[] {"id", "description"},
new int[] {android.R.id.text1,
android.R.id.text2});
final ListView listView = (ListView) findViewById(R.id.recordView);
listView.setAdapter(adapter);
我需要添加类似于https://code.google.com/archive/p/android-amazing-listview/
的群组但似乎不再有可能使用amazinglistview。我发现的大多数教程都是模糊的,而且是多年前的。