enable onTouchEvent for ViewGroups and add some stubs

This commit is contained in:
Julian Winkler
2023-10-30 22:35:31 +01:00
parent 065fd96308
commit 3de842b1d8
9 changed files with 24 additions and 2 deletions

View File

@@ -6,4 +6,6 @@ public interface ViewParent {
public boolean isLayoutRequested();
public void requestDisallowInterceptTouchEvent(boolean disallowIntercept);
public abstract boolean onStartNestedScroll(View child, View target, int nestedScrollAxes);
}