View.ScrollIndicators Property

Definition

Returns a bitmask representing the enabled scroll indicators.

public virtual Android.Views.ScrollIndicatorPosition ScrollIndicators { [Android.Runtime.Register("getScrollIndicators", "()I", "GetGetScrollIndicatorsHandler", ApiSince=23)] get; }
[<get: Android.Runtime.Register("getScrollIndicators", "()I", "GetGetScrollIndicatorsHandler", ApiSince=23)>]
member this.ScrollIndicators : Android.Views.ScrollIndicatorPosition

Property Value

a bitmask representing the enabled scroll indicators

Attributes

Remarks

Returns a bitmask representing the enabled scroll indicators.

For example, if the top and left scroll indicators are enabled and all other indicators are disabled, the return value will be View.SCROLL_INDICATOR_TOP | View.SCROLL_INDICATOR_LEFT.

To check whether the bottom scroll indicator is enabled, use the value of (getScrollIndicators() & View.SCROLL_INDICATOR_BOTTOM) != 0.

Java documentation for android.view.View.getScrollIndicators().

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to