您的位置:首页 > 移动开发 > Android开发

Android中ListView无法点击

2016-06-24 15:26 183 查看

Android中ListView无法点击

转自:http://xqjay19910131-yahoo-cn.iteye.com/blog/1319502

问题描述:
ListView中Item加入Button后,导致ListView无法点击。

解决方案:
如果ListView子视图中有Button等抢焦点的控件,那么需要在ListView的xml配置中加入

Java代码


android:descendantFocusability="blocksDescendants"

同时,对Button等控件需要加入

Java代码


android:focusable="false"
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: