package android.view; public interface ViewParent { public abstract ViewParent getParent(); public boolean isLayoutRequested(); public void requestDisallowInterceptTouchEvent(boolean disallowIntercept); public abstract boolean onStartNestedScroll(View child, View target, int nestedScrollAxes); public boolean onNestedPreFling(View target, float velocityX, float velocityY); public boolean onNestedFling(View target, float velocityX, float velocityY, boolean consumed); }