0

How can I add an extra space between an expandable listview groups just like in the below image and that space should also remain in case of no item.

enter image description here

Abid Khan
  • 2,451
  • 4
  • 22
  • 45

2 Answers2

5

Try this,

        <ExpandableListView
        android:id="@+id/lvExp"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:dividerHeight="Your desired height"
        android:divider="Your desired color"/> 
Zahid
  • 677
  • 4
  • 6
0

Hope this example would helps you..

ExpandableListView - How to set divider only between parent elements

Community
  • 1
  • 1
Giridharan
  • 4,402
  • 5
  • 27
  • 30