How to make the first item of a ListView to be selected as default at startup?
yourlist.setItemChecked(position,true)
You can do this by
yourListView.setSelection(0);
yourListView.getSelectedView().setSelected(true);
I hope this will help you