OnItemCLickListener not working in listview

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

Activity class code:

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


        
24条回答
  •  说谎
    说谎 (楼主)
    2020-11-22 11:52

    I had the same problem and I just saw I had accidentally set:

    @Override
    public boolean isEnabled(int position)
    {
        return false;
    }
    

    on my CustomListViewAdapter class.

    By changing this to:

    return true;
    

    I've managed to fix the problem. Just in case if someone has done the same mistake...

提交回复
热议问题