当前位置: 代码迷 >> Android >> Android中ListView没法点击
  详细解决方案

Android中ListView没法点击

热度:85   发布时间:2016-05-01 19:35:30.0
Android中ListView无法点击
问题描述:
ListView中Item加入Button后,导致ListView无法点击。

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

同时,对Button等控件需要加入
android:focusable="false"


  相关解决方案