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>
 
希望能帮大家解决类似的问题。
 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM