OnItemCLickListener not working in listview

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

Activity class code:

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


        
24条回答
  •  星月不相逢
    2020-11-22 11:49

    you need to do 2 steps in your listview_item.xml

    1. set the root layout with: android:descendantFocusability="blocksDescendants"
    2. set any focusable or clickable view in this item with:
      android:clickable="false"
      android:focusable="false"
      android:focusableInTouchMode="false"

    Here is an example: listview_item.xml

    
    
    
        
    
    
    

提交回复
热议问题