Android.Views.ViewGroup.OnStartNestedScroll Method
React to a descendant view initiating a nestable scroll operation, claiming the nested scroll operation if appropriate.

Syntax

[Android.Runtime.Register("onStartNestedScroll", "(Landroid/view/View;Landroid/view/View;I)Z", "GetOnStartNestedScroll_Landroid_view_View_Landroid_view_View_IHandler")]
public virtual bool OnStartNestedScroll (View child, View target, [Android.Runtime.GeneratedEnum] ScrollAxis nestedScrollAxes)

Parameters

child
Direct child of this ViewParent containing target
target
View that initiated the nested scroll
nestedScrollAxes
Flags consisting of View.ScrollAxisHorizontal, View.ScrollAxisVertical or both

Returns

Documentation for this section has not yet been entered.

Remarks

React to a descendant view initiating a nestable scroll operation, claiming the nested scroll operation if appropriate.

This method will be called in response to a descendant view invoking View.StartNestedScroll(ScrollAxis). Each parent up the view hierarchy will be given an opportunity to respond and claim the nested scrolling operation by returning true.

This method may be overridden by ViewParent implementations to indicate when the view is willing to support a nested scrolling operation that is about to begin. If it returns true, this ViewParent will become the target view's nested scrolling parent for the duration of the scroll operation in progress. When the nested scroll is finished this ViewParent will receive a call to IViewParent.OnStopNestedScroll(View).

[Android Documentation]

Requirements

Namespace: Android.Views
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1