View.ScrollIndicators Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.