JorgeCastilloPrz / ExpandablePanel

Android library for creating an expandable to full screen view inside a viewgroup composition.
Apache License 2.0
422 stars 67 forks source link

Can't use with a scroll view in the bottom panel #2

Closed shehabic-work closed 10 years ago

shehabic-work commented 10 years ago

Can't use with a scroll view in the bottom panel

JorgeCastilloPrz commented 10 years ago

ScrollView handles vertical touch by itself and that behaviour is in conflict with ExpandablePanel vertical touch handling. This is a common problem present in any views capable of handling vertical touch. You will get the same sort of problem if you try to insert a ViewPager into a ListView/ScrollView.

It becomes a problem about extending ExpandablePanel and playing with intercepting touch events and not doing it in different cases.