보통 아래와 같은 case 이다..
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:id="@+id/llimgBtnShowMenu"
android:gravity="bottom|center_horizontal"
android:layout_weight="1"> <ImageButton
android:id="@+id/imgBtnShowMenu"
android:clickable="false" android:layout_width="13.33dp"
android:layout_height="10.67dp"
android:layout_marginBottom="18dp"
android:background="@drawable/ico_menu" /> </LinearLayout>
이것을 막기 위해서는 하위 뷰의 clickable = false 로 해서 클릭 이벤트가 전달이 안되게 하면 레이아웃 전체에 무리없이 클릭 이벤트가 먹는다...