码迷,mamicode.com
首页 > 移动开发 > 详细

Android_listview点击失效

时间:2015-03-18 17:20:59      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

listview点击失效,原因可能是item布局中存在Button,该Button夺取了焦点。

解决办法:

1,在xml布局中,为Button添加android:focusable="false"

2,在item布局的根据点添加android:descendantFocusability="blocksDescendants"

Defines the relationship between the ViewGroup and its descendants when looking for a View to take focus.
 
Must be one of the following constant values.  
该属性是当一个view获取焦点时,定义viewGroup和其子控件两者之间的关系。
 
属性的值有三种:
 
        beforeDescendants:viewgroup会优先其子类控件而获取到焦点
 
        afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点
 
        blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点
3,不要用Button,而是TextView代替,至于点击效果,再另写。

Android_listview点击失效

标签:

原文地址:http://www.cnblogs.com/wangziqiang/p/4347596.html

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