Вы можете исправить это следующим образом.
//set list adapter, then
lv.setItemChecked(1, true);//position 1
lv.setSelection(1);//position 1
Обновить макет XML с одним выбором.
<ListView
android:id="@+id/lv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/list_item_background"
android:cacheColorHint="#FFFFFF"
android:choiceMode="singleChoice"
android:dividerHeight="1dip" >
</ListView>
и установить фоновый XML-вид списка в виде list_item_background.xml,
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/bg_list_default" android:state_activated="false"/>
<item android:drawable="@drawable/bg_list_pressed" android:state_pressed="true"/>
<item android:drawable="@drawable/bg_list_pressed" android:state_activated="true"/>