Skip to content

Commit

Permalink
fix(android): Modify to pass touch event to child views in onIntercep…
Browse files Browse the repository at this point in the history
…tTouchEvent (#116)
  • Loading branch information
yunchaehyun authored Apr 28, 2024
1 parent b766157 commit b67065a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ public void addView(View child, int index) {

@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
return true;
gestureDetector.onTouchEvent(ev);
return super.onInterceptTouchEvent(ev);
}

@Override
Expand Down

0 comments on commit b67065a

Please sign in to comment.