/* * Copyright (C) 2015 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.support.v4.view; import android.view.View; import android.view.ViewGroup; /** * Helper class for implementing nested scrolling parent views compatible with Android platform * versions earlier than Android 5.0 Lollipop (API 21). * *

{@link android.view.ViewGroup ViewGroup} subclasses should instantiate a final instance * of this class as a field at construction. For each ViewGroup method that has * a matching method signature in this class, delegate the operation to the helper instance * in an overriden method implementation. This implements the standard framework policy * for nested scrolling.

* *

Views invoking nested scrolling functionality should always do so from the relevant * {@link ViewCompat}, {@link ViewGroupCompat} or {@link ViewParentCompat} compatibility * shim static methods. This ensures interoperability with nested scrolling views on Android * 5.0 Lollipop and newer.

*/ public class NestedScrollingParentHelper { private final ViewGroup mViewGroup; private int mNestedScrollAxes; /** * Construct a new helper for a given ViewGroup */ public NestedScrollingParentHelper(ViewGroup viewGroup) { mViewGroup = viewGroup; } /** * Called when a nested scrolling operation initiated by a descendant view is accepted * by this ViewGroup. * *

This is a delegate method. Call it from your {@link android.view.ViewGroup ViewGroup} * subclass method/{@link NestedScrollingParent} interface method with the same signature * to implement the standard policy.

*/ public void onNestedScrollAccepted(View child, View target, int axes) { mNestedScrollAxes = axes; } /** * Return the current axes of nested scrolling for this ViewGroup. * *

This is a delegate method. Call it from your {@link android.view.ViewGroup ViewGroup} * subclass method/{@link NestedScrollingParent} interface method with the same signature * to implement the standard policy.

*/ public int getNestedScrollAxes() { return mNestedScrollAxes; } }