«

ListView.setOnItemClickListener不起作用的原因

时间:2024-3-2 17:52     作者:韩俊     分类: Android


ListView.setOnItemClickListener不起作用的原因是item的layout中对以下两个属性设置为true:

android:focusable="true"
android:focusableInTouchMode="true"

将其改为false或者不设置(默认为false)即可:

android:focusable="false"
android:focusableInTouchMode="false"

标签: android

热门推荐