The default behavior of ExpandableListView is to collapse a group when its header is clicked. Is it possible to prevent this from happening?

I've tried:

  • Setting OnTouchListener on the list. This interferes with scrolling.
  • Setting an OnGroupClickListener on the list (in onCreate()). This works for all clicks after the first.

Has anyone else accomplished this? Why might the OnGroupClickListener miss the first click?

Thanks in advance for your suggestions.

link|improve this question

This worked for me -> stackoverflow.com/questions/3464599. – adstro Nov 2 '10 at 17:43
While helpful, that thread does not answer my stated question. – Justin Nov 2 '10 at 19:37
feedback

2 Answers

Maybe It`s too late,I use onGroupCollapseListener in the activity and implement onGroupCollapse Method.(expandView is ExpandableListView)

@Override
public void onGroupCollapse(int collapseIndex) {
    expandView.expandGroup(collapseIndex);
}
link|improve this answer
feedback
up vote 0 down vote accepted

It seems the problem had to do with there being both a focusable element in the group header and an OnGroupClickListener set. Removing the listener solved my problem.

link|improve this answer
didn't solve it for me (I hadn't even set one in the first place). I have clickable elements inside the header, but the header itself should not be clickable. – Matthias Aug 18 '10 at 16:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.