How to remove specific space between parent and child in an ExpandableListView

后端 未结 10 2038
太阳男子
太阳男子 2021-02-20 09:10

Can you help me identify why there is a space between the group and the child? In my case I want spaces between all groups and the child should be right below the group with no

10条回答
  •  花落未央
    2021-02-20 09:37

    Set the child view programmatically like:

    expandableListView.setDividerHeight(1);

    expandableListView.setChildDivider(new ColorDrawable(Color.Black);

    And group view From xml like :

        
    
    
        
    
    
    
    

提交回复
热议问题