Skip to content Skip to sidebar Skip to footer

Expandablelistview Order Changed When Click

When I click the groupview the order of the expandablelist changes I've found some one with similiar problem here The order seems random, i don't understand what happened. Here's m

Solution 1:

I had the same problem. When i expand one item, the next item to it jumps to bottom. Here is my solution. Change this flowing from false to true in BaseExpandableListAdapter.

@OverridepublicbooleanhasStableIds() {
    returntrue; //Previous value was false
}

BR, Akila

Post a Comment for "Expandablelistview Order Changed When Click"