mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 18:02:15 -05:00
Propagate the ACTION_DOWN event to the ScrollView so we can stop scrolling after a fling. Fixes issue 2892.
This commit is contained in:
parent
65dc3c7d1b
commit
fe8ba6078e
@ -40,7 +40,8 @@ public class ToggleScrollView extends ScrollView
|
||||
// currently got. This is based on
|
||||
// http://stackoverflow.com/questions/2646028/android-horizontalscrollview-within-scrollview-touch-handling
|
||||
boolean result = super.onInterceptTouchEvent(ev);
|
||||
if (mDetector.onTouchEvent(ev))
|
||||
// Let the original ScrollView handle ACTION_DOWN so we can stop the scroll when someone touches the screen.
|
||||
if (ev.getAction() == MotionEvent.ACTION_DOWN || mDetector.onTouchEvent(ev))
|
||||
{
|
||||
return result;
|
||||
}
|
||||
@ -48,7 +49,8 @@ public class ToggleScrollView extends ScrollView
|
||||
return false;
|
||||
}
|
||||
|
||||
// Return false if we're scrolling in the x direction
|
||||
// Return false if we're scrolling in the x direction. That is, decline to consume the event and
|
||||
// let the parent class take a stab at it.
|
||||
class YScrollDetector extends GestureDetector.SimpleOnGestureListener
|
||||
{
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user