AbsListView.FastScrollAlwaysVisible Property

Definition

Returns true if the fast scroller is set to always show on this view. -or- Set whether or not the fast scroller should always be shown in place of the standard scroll bars.

public virtual bool FastScrollAlwaysVisible { [Android.Runtime.Register("isFastScrollAlwaysVisible", "()Z", "GetIsFastScrollAlwaysVisibleHandler")] get; [Android.Runtime.Register("setFastScrollAlwaysVisible", "(Z)V", "GetSetFastScrollAlwaysVisible_ZHandler")] set; }
[<get: Android.Runtime.Register("isFastScrollAlwaysVisible", "()Z", "GetIsFastScrollAlwaysVisibleHandler")>]
[<set: Android.Runtime.Register("setFastScrollAlwaysVisible", "(Z)V", "GetSetFastScrollAlwaysVisible_ZHandler")>]
member this.FastScrollAlwaysVisible : bool with get, set

Property Value

true if the fast scroller will always show

Attributes

Remarks

Property getter documentation:

Returns true if the fast scroller is set to always show on this view.

Java documentation for android.widget.AbsListView.isFastScrollAlwaysVisible().

Property setter documentation:

Set whether or not the fast scroller should always be shown in place of the standard scroll bars. This will enable fast scrolling if it is not already enabled.

Fast scrollers shown in this way will not fade out and will be a permanent fixture within the list. This is best combined with an inset scroll bar style to ensure the scroll bar does not overlap content.

Java documentation for android.widget.AbsListView.setFastScrollAlwaysVisible(boolean).

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

See also