Search code examples
androidpositionscrollviewscrollbar

Android ScrollView verticalScrollbarPosition property


I use verticalScrollbarPosition="left" as property of ScrollView and it works fine and positions vertical scrollbar to the left of view. But in the Android Developers Documentation there is no any property named verticalScrollbarPosition!

https://developer.android.com/reference/android/widget/ScrollView


Solution

  • It is a part of the View class documentation found here View.SCROLLBAR_POSITION_LEFT

    SCROLLBAR_POSITION_LEFT
    added in API level 11
    public static final int SCROLLBAR_POSITION_LEFT
    Position the scroll bar along the left edge.
    
    Constant Value: 1 (0x00000001)