listView 在item布局的顶级布局中设置
android:descendantFocusability="blocksDescendants"
可以阻止子控件获取焦点 这样使item项可以点击 此时焦点是父控件不是子控件 这时其中的图片控件还是可以点击的 那是因为图片这些控件的clickable属性默认为true的原因当设置为false时就彻底不能点了
当不想让item能点击时 可以不加上边的设置 并且将焦点转移到子控件 focusable属性
<TextView android:id="@+id/recommend_album_more" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:focusable="true" android:text="更多>>" />