关于listview的item焦点问题

今天遇到一个奇怪的问题,之前运行好好的项目,在8.0设备上,某些item不能点击了,并且item里面的图片还能点击

在网上查了一下,修改方法如下:

1,在能拿到焦点的view(如:button,imageview等)上,添加属性

        android:focusable="false"

        android:focusableInTouchMode="false"

2,在item的跟布局,添加属性:android:descendantFocusability="blocksDescendants"

3,收工

猜你喜欢

转载自blog.csdn.net/qq_24179679/article/details/79296237
今日推荐