A Scroll View is a special type of FrameLayout, which allows you to scroll through a list of views that logically occupy more space than the actual space of physical display.To scroll data in View, you use Scroll View. This helps you scroll across the subviews.
Configure.IT brings you this control where you can have horizontal as well as vertical scrolling, depending upon your requirement. Scroll View has a view as its subview and in that view you can have any control(s).
Sets border width for a Scroll View.
Sets radius with which control's rounded corners should be drawn. Setting this property will enable control appear with rounded corners.
Sets the border color for a control. Works only if "Border Width" property is set to a value more than 0. Default would be black color.
Sets width of each dash in dashed border pattern for a control.
Helps set the spacing between Dashes for Dashed Border.
Sets angle in degrees to which the Scroll View which is in its normal state, has to be rotated. Possible values for this property are -360 to 360.
This property controls the zoom level when the page is first loaded.
This allows users to smoothly scroll back to the top of the page.
This property is for setting "Object ID" of view that has to scale when zooming is about to occur in the Scroll View.
This property is for setting "Object ID" of view which has to be shown when Scroll View is scrolled downwards to the origin
This property is for setting "Object ID" of view which has to be shown when Scroll View is scrolled upwards to the end.
Set the style of the scroll indicators from the given options like default, black and white.
A Boolean value that controls whether the horizontal scroll indicator is visible.
A Boolean value that controls whether the vertical scroll indicator is visible.
A Boolean value that determines whether scrolling is enabled.
A Boolean value that determines whether paging is enabled for the scroll view.
A Boolean value that determines whether scrolling is disabled in a particular direction
A Boolean value that controls whether the Scroll View bounces past the edge of content and back again.
A Boolean value that determines whether bouncing always occurs when horizontal scrolling reaches the end of the content view.
A Boolean value that determines whether bouncing always occurs when vertical scrolling reaches the end of the content view.
A floating-point value that specifies the minimum scale factor that can be applied to the Scroll view's content.
A floating-point value that specifies the maximum scale factor that can be applied to the Scroll view's content.
A Boolean value that determines whether the scroll view animates the content scaling when the scaling exceeds the maximum or minimum limits.
A Boolean value that determines whether the Scroll View delays the handling of touch-down gestures.
A Boolean value that controls whether touches in the content view always lead to tracking.
The manner in which the keyboard is dismissed when a drag begins in the Scroll View.
A Boolean value that determines whether user interaction are ignored or not on the particular object.
Used to set the transparency to the Scroll View which ranges from 0 to 1.
Used to set the background color to the Scroll View.
Sets the X position of the Scroll View.
Sets the Y position of the Scroll View.
Sets the width of the Scroll View.
Sets the height of the Scroll View.
Sets unique identifier for the control. Control can be referenced with name set in this property for configuration.
Set "Object ID" of Scroll View which contains this control or can serve as parent.
Sets the web service key from data received from web server, which corresponds to the value to be displayed on the control.
Sets the width of the Scroll View as per the size of the content.
Sets the height of the Scroll View as per the size of the content.
The point at which the origin of the content view is offset from the origin of the scroll view in horizontal direction.
The point at which the origin of the content view is offset from the origin of the scroll view in vertical direction.
Hiding an element can be done by checking ‘Hide’. This property lets you hide the control.
Advance - Sets auto resizing with respect to superview, for Scroll View.
Group of vertical android default properties.
These are the android default properties to set selected view with respect of other view.
Reference object that is used for positioning selected object.
marginTop : Specifies extra space on the top side of this view. This space is outside this view's bounds.
marginBottom : Specifies extra space on the bottom side of this view. This space is outside this view's bounds.
Value define the extra space value in pixel.
This property centers the child vertically with respect to the bounds of its parent view.
If any of the vertical layout setting parameter(s) are selected then this value is selected to indicate user applied vertical custom layout setting parameter(s).
Group of horizontal android default properties.
Reference type is the the default property to set selected view with respect to other view.
Reference object that is used for positioning selected object.
marginLeft : Specifies extra space on the left side of this view. This space is outside this view's bounds.
marginRight : Specifies extra space on the right side of this view. This space is outside this view's bounds.
Offset Value defines the extra space value in the pixel.
This property centers the child horizontally with respect to the bounds of its parent view.
If any of the horizontal layout setting parameter(s) are selected then this value is selected to indicate user applied horizontal custom layout setting parameter(s).
The padding is expressed in pixels for the left, top, right and bottom parts of the view. Padding can be used to offset the content of the view by a specific amount of pixels.
For instance, a Left value of 2 will push the view's content by 2 pixels to the right of the left edge.
For instance, a Bottom value of 2 will push the view's content by 2 pixels to the top of the bottom edge.
Group of horizontal android default properties.
For instance, a Right value of 2 will push the view's content by 2 pixels to the left of the right edge.
For instance, a Top value of 2 will push the view's content by 2 pixels to the bottom of the top edge.
Group of vertical android default properties.
If any of the layout setting parameter(s) are selected then this value is selected to indicate user applied custom layout setting parameter(s).
This property centers the child vertically with respect to the bounds of its parent view.
Sets the height of the view
match_parent/fill_parent : Takes the height as its parent view
wrap_content : Takes the height as its content’s height
Sets the width of the view
match_parent/fill_parent : Takes the width as its parent view
wrap_content : Takes the width as its content’s width
The height of the view cannot be less than the given value.
If user select “Default Min Height” then android default value is taken otherwise it takes 0dp.
The width of the view cannot be less than the given value.
If user select “Default Min Width” then android default value is taken otherwise it takes 0dp.
A Boolean value that determines whether subviews are confined to the bounds of the control.
This event is triggered on load Scroll View. Hence any action can be defined [for eg: when a Scroll View loads like API Call to load data to be shown on cells] This can be configured in "LOAD" event listed under "Action(S)" tab of Scroll View control.
This event is triggered when user ends scrolling scroll view.
This event is triggered when user taps a button on alert view, which was shown using “Show Alert” action, so any actions you want perform when alert button button is tapped can be configured in “Alert Button Click” event listed in ”ACTION(S)” tab of the control on which you have configured “Show Alert” action or Under Data source events of "Data sources" tab (if alert was shown on using “Show Alert” action configured in "Datasource Loaded" event of a data source in "Data Sources" list, you can configure actions of alert button click in "Alert Button Click" listed under data source events). “seletedButtonIndex” and "selectedButtonTitle" are the response parameters which indicate which button is tapped by user. Add condition for checking value of “seletedButtonIndex” or "selectedButtonTitle" response parameter value in order to configure actions for each button of alert view separately. You can access user input in alert view text fields using "alert_text_1" and "alert_text_2" response parameters in case of alert type is "SecureTextInput", "PlainTextInput" or "LoginAndPasswordInput"
Following are the response parameters for this event :-
1) selectedButtonIndex :- Index of the tapped button
2) selectedButtonTitle :- Title of the tapped button
3) alert_text_1 :- Text entered by user in text field one. If alert type is
"SecureTextInput", "PlainTextInput" or "LoginAndPasswordInput"
4) alert_text_2 :- Text entered by user in text field two(password). If alert type is
"LoginAndPasswordInput"
Fired when Scroll View is tapped once with a single finger.
Fired when Scroll View is tapped twice with a single finger.
Fired when Scroll View is tapped thrice with a single finger.
Fired when Scroll View is tapped once with two fingers.
Fired when Scroll View is tapped twice with two fingers.
Fired when Scroll View is tapped thrice with two fingers.
Fired when Scroll View is swiped left with single finger.
Fired when Scroll View is swiped right with single finger.
Fired when Scroll View is swiped up with single finger.
Fired when Scroll View is swiped down with single finger.
Fired when Scroll View is swiped left with two fingers.
Fired when Scroll View is swiped right with two fingers.
Fired when Scroll View is swiped up with two fingers.
Fired when Scroll View is swiped down with two fingers.
Fired when Scroll View is panned (sweeped) with two fingers.
Fired when there is an elongated press on Scroll View with single finger.
Fired when there is an elongated press on Scroll View with two fingers.
For scrollview to scroll in horizontal and(or) vertical direction, you need to set it’s “Content Size Width” and(or) “Content Size Width” properties greater than it’s “Width” and(or) “Height” properties respectively.
If controlA is dynamic height control and you want to align controlB below it vertically in scrollview, you need to configure “Change Object Properties” action selecting controlB from “Object Param” tree, “Frame” from “Property” dropdown, “Form Object” from “Source & Values” drop down and then select controlA from controls tree. Repeat same for controls below controlB in order.
You can enable zooming of a view in scrollview when user pinches on it, by setting “Zooming View Id” property of Scroll View to that control.