onListItemClick is not working for listview?

前端 未结 9 2174
一整个雨季
一整个雨季 2020-11-30 11:29

Hi onListItemClick for listview is not working. Here i am fetching datas from SQLite using AsyncTask and displaying it in a list view. And i wants to do some actions when a

9条回答
  •  醉酒成梦
    2020-11-30 12:08

    Add below code to your TextView in the XML

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

    and try again.

    Another simple solution: add android:descendantFocusability="blocksDescendants" to the root viewgroup.

提交回复
热议问题