码迷,mamicode.com
首页 > 其他好文 > 详细

ListView点击事件失效(item里面有button按钮控件)解决方法

时间:2018-07-10 12:53:57      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:text   color   XML   false   方法   注意   控件   lis   item   

ListView点击事件失效解决方法:

一般出现这个情况,就是你的item里面有按钮的点击事件,你的item里面有button控件,button控件是抢占焦点的,只要在你的item布局里面这样子写就可以了:

                   <Button
                    android:layout_width="140px"
                    android:layout_height="56px"
                    android:text="按钮"
                    android:textSize="28px"
                    android:focusable="false"
                    android:textColor="@color/white"/>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

注意: android:focusable=”false”只要加上这句话,就可以避免了抢占焦点事件

ListView点击事件失效(item里面有button按钮控件)解决方法

标签:text   color   XML   false   方法   注意   控件   lis   item   

原文地址:https://www.cnblogs.com/zmc/p/9288123.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!