OnItemCLickListener not working in listview

前端 未结 24 2262
悲&欢浪女
悲&欢浪女 2020-11-22 11:21

Activity class code:

conversationList = (ListView)findViewById(android.R.id.list);
ConversationArrayAdapter conversationArrayAdapter=new  Conver         


        
24条回答
  •  温柔的废话
    2020-11-22 11:50

    I had the same problem and tried all of the mentioned solutions to no avail. through testing i found that making the text selectable was preventing the listener to be called. So by switching it to false, or removing it my listener was called again.

    android:textIsSelectable="false"
    

    hope this helps someone who was stuck like me.

提交回复
热议问题