Changes the Z order of this view and brings it to the front.
ColorAsInt [write only]
Sets the background of the view to be a ColorDrawable with the given color. If the current background is of type GradientDrawable or ColorDrawable the round corners will be kept.
DisableTouchEventInterception (DisabledAsBoolean)
Prevents the ScrollView2D from intercepting the touch events. You should only call this function when the SV2D is in conflict with its parent about scrolling (e.g. AHViewPager).
EnabledAsBoolean
FadingEdges (EnabledAsBoolean)
Defines whether the edges should be faded when this view is scrolled. They are faded by default.
Scrolls the scroll view to the beginning or end, horizontally or/and vertically. Direction: 0 = horizontally 1 = vertically 2 = horizontally and vertically
GiveFocusToFirstVisible
Sets the focus to the first focusable view in the visible area of the ScrollView2D panel. You should call this function after a FullScroll, SmoothScrollTo or H/VScrollPosition to move the focus.
Initializes the ScrollView and sets its inner panel dimensions to the given width and height. You can later change these dimensions by calling ScrollView2D.Panel.Width or ScrollView2D.Panel.Height.
You should never use a ScrollView2D with a ListView, since ListView takes care of its own scrolling. Most importantly, doing this defeats all of the important optimizations in ListView for dealing with large lists, since it effectively forces the ListView to display its entire list of items to fill up the infinite container supplied by ScrollView2D.
Invalidate
Invalidates the whole view forcing the view to redraw itself. Redrawing will only happen when the program can process messages. Usually when it finishes running the current code.
Invalidate2 (RectAsandroid.graphics.Rect)
Invalidates the given rectangle. Redrawing will only happen when the program can process messages. Usually when it finishes running the current code.