1. 程式人生 > >android View的點選無效的原因

android View的點選無效的原因

點選事件不生效,原來是因為我在裡面的 ImageView中添加了 android:clickable="true"。 解決辦法:刪掉ImageView中的android:clickable="true"。   <!--擴大點選區域--> <LinearLayout     android:id="@+id/cancel_ll"     android:layout_width="45dp"     android:layout_height="match_parent" //這裡能解決有時不能點選的問題。 android:clickable="true" android:focusable="true"     android:gravity="center">       <ImageView         android:layout_width="15dp"         android:layout_height="15dp"         android:scaleType="fitXY"         android:src="@drawable/icon_close_title_pressed" /> </LinearLayout>   希望能幫大家解決類似的問題。