I need to put small icons on the right of each list item. I know it can be done with a custom list but it will mean rewiring a lot of code. if there a way to do it without using a custom adapter?
mList = (ListView) findViewById(R.id.sidebar_list);
mList.setAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_multiple_choice, mStrings));
mList.setChoiceMode(AbsListView.CHOICE_MODE_MULTIPLE);