OnItemCLickListener not working in listview

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

Activity class code:

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


        
24条回答
  •  闹比i
    闹比i (楼主)
    2020-11-22 11:58

    1. Add this in main Layout

      android:descendantFocusability="blocksDescendants"
      
    2. Write this code into every button,Textview,ImageView etc which have onClick

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

    Hope it will work.

提交回复
热议问题