在使用自定義的listview界面中有按鈕實現(xiàn)點擊時,listview的點擊事件就會被覆蓋
如圖 需要實現(xiàn)每個item點擊 評論和listview的點擊進(jìn)入
這里只需要在listview的子item中設(shè)置如下
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:descendantFocusability="blocksDescendants"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageButton
android:id="@+id/img_but"
android:focusable="false"
android:clickable="true"
android:layout_marginTop="4dp"
android:layout_marginLeft="10dp"
android:src="@mipmap/ic_toggle_star"
android:layout_width="15dp"
android:layout_height="15dp" />