方法1(ps:这个挺好用的)
先从ListView属性出发,设置它为单选 (一定要设置)
//设置它为单选
android:choiceMode="singleChoice"
ListView的布局文件xml
android:id="@+id/lv_left"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2.5"
android:layout_gravity="center"
android:background="#ffffff"
android:listSelector="@drawable/drawable_listview"
android:choiceMode="singleChoice"
android:scrollbars="none">
设置它的item布局的selector:
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:id="@+id/tv_item_list_view_classif"