Android Categorized listview with heading
问题 I have to display data from the database in a listview. I have fetch all the data in group by categoty and displayed in a Listview. I have used the following code. private ListView infos; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ......... ......... infos = new ListView(this); model = infoDataHelper.getCursor(addType); adapter = new InfoAdapter(model); infos.setAdapter(adapter); ......... ......... } class InfoAdapter extends CursorAdapter