There is a ListView in my App and the ListView has a selector. I want to make the first item of this ListView to be selected as default at the very
You can do this by
yourListView.setSelection(0); yourListView.getSelectedView().setSelected(true);
I hope this will help you