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
Create an onItemClickListener then use this snippet, filling in the appropriate values:
onItemClickListener
listView.performItemClick(View view, int position, long id);
See the docs for further detail.