OnItemCLickListener not working in listview

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

Activity class code:

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


        
24条回答
  •  遥遥无期
    2020-11-22 11:38

    The problem is that your layouts contain either focusable or clickable items. If a view contains either focusable or clickable item the OnItemCLickListener won't be called.

    Click here for more information.

    Please post one of your layout xmls if that isn't the case.

提交回复
热议问题