Closed changxiangzhong closed 9 years ago
Update:
I was wrong about the onFling & onScroll.
It is the ViewDragHelper::checkTouchSlop determines who to handle the onTouch event. When it's scrolled very slow, the checkTouchSlop method would regard it as a "touch slop" and will NOT intercept the event, so that the ListView will have the opportunity to scroll. When the scrolling is relatively fast, it will intercept the touch event.
Work in progress. Dupe of https://github.com/umano/AndroidSlidingUpPanel/issues/116
Hi,
I want to express my appreciate of your work, this is really amazing project.
Issue description
I'm using a sliding-down menu(a menu located at the top of the screen) as the following screen indicates - the red area is the menu, the orange area is the main-body of the layout. The sliding menu contains a ListView. You can find two screen shots at the end.
Now the current situation is
My requirement is
Up menu collapsed:
Up menu expanded:
Thank you in advance.