ListView默认选中某一项

给选中的Item添加效果(For API 11+):

  1. Set list view to single choice:
    <ListView android:choiceMode="singleChoice" />

  2. Set the background of the root element of your item layout to your selector:
    <LinearLayout android:background="@drawable/selector">

    Read More