Android.Widget.AbsListView.SmoothScrollbarEnabled Property
Returns the current state of the fast scroll feature.

Syntax

[get: Android.Runtime.Register("isSmoothScrollbarEnabled", "()Z", "GetIsSmoothScrollbarEnabledHandler")]
[set: Android.Runtime.Register("setSmoothScrollbarEnabled", "(Z)V", "GetSetSmoothScrollbarEnabled_ZHandler")]
public virtual bool SmoothScrollbarEnabled { get; set; }

See Also

AbsListView.SmoothScrollbarEnabled
AbsListView.SmoothScrollbarEnabled

Value

Documentation for this section has not yet been entered.

Remarks

Get method documentation [Android Documentation]

Returns the current state of the fast scroll feature.

Set method documentation [Android Documentation]

When smooth scrollbar is enabled, the position and size of the scrollbar thumb is computed based on the number of visible pixels in the visible items. This however assumes that all list items have the same height. If you use a list in which items have different heights, the scrollbar will change appearance as the user scrolls through the list. To avoid this issue, you need to disable this property. When smooth scrollbar is disabled, the position and size of the scrollbar thumb is based solely on the number of items in the adapter and the position of the visible items inside the adapter. This provides a stable scrollbar as the user navigates through a list of items with varying heights.

Requirements

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