Method Blocks
Build
Initializes the component with the specified data list.
Params
with
data
List
-
CanScrollHorizontally
Return Type: Boolean
Returns whether the component can scroll horizontally to the indicated side.
with
-
direction
-
*
Boolean
-
CanScrollVertically
Return Type: Boolean
Returns whether the component can scroll vertically to the indicated side.
with
-
direction
-
*
Boolean
-
CreateGridManager
Return Type: LayoutManager
This block creates and returns a new Grid Layout Manager, which will display the component as a grid view.
Number
-
horizontal
Boolean
-
reverse
Boolean
-
Boolean
-
*
LayoutManager
-
CreateLinearManager
Return Type: LayoutManager
This block creates and returns a new Linear Layout Manager instance, which will display the component as a List.
horizontal
Boolean
-
reverse
Boolean
-
Boolean
-
*
LinearLayout
-
CreateStaggeredGridManager
Return Type: LayoutManager
Creates and returns a new StaggeredGridLayoutManager instance, which will allow to display the component as a Staggered Grid layout
Number
-
horizontal
Boolean
-
reverse
Boolean
-
GetComponentPosition
Returns the position of any component that is inside the recycler component.
with
-
component
Component
-
*
Number
-
NotifyDataSetChanged
Notifies the component that the linked list has changed.When notified, the component will be visibly updated.
with
-
NotifyItemChanged
Notifies the component that only an item in the linked list has changed.When notified, the component will visibly update that item (if it is visible on screen)
with
-
position
Number
-
NotifyItemInserted
Notifies the component that an item was inserted into the linked list, the result will be visibly reflected.
with
-
position
Number
-
NotifyItemRemoved
Notifies the component that an item was removed from the linked list, the result will be visibly reflected.
with
-
position
Number
-
ScrollTo
Causes the component to quickly scroll to the specified position.
with
-
position
Number
-
SetContentComparator
It establishes the procedure in charge of carrying out the task of comparing the content of each item in the list.
contentComparator: Procedure Name
The parameters of the procedure must be the following:
id (ID of the RecyclerView required by the procedure)
oldItem: Previous item to be compared
newItem: New item to be compared
with
-
contentComparator
Text
-
SetEmptyComponent
Sets a component to display when the recycler component is empty.
Params
with
component
Component
SetHasFixedSize
Specifies whether the size of the component is dependent on the size of each item. With FixedSize enabled, the component will think all visible objects are of the same size and therefore the size (width or height) of the component will not be affected. This feature is not mandatory but using it will improve the fluidity of the widget.
with
-
hasFixedSize
Boolean
-
SetItemComparator
It establishes the procedure in charge of carrying out the task of comparing each item in the list.
itemComparator: Procedure Name
The parameters of the procedure must be the following:
id (ID of the RecyclerView required by the procedure)
oldItem: Previous item to be compared
newItem: New item to be compared
with
-
itemComparator
Text
-
SetLayoutManager
Changes the layout manager of the component.
with
-
layoutManager
-
SetScrollChangedListener
Set a procedure that will be notified of the component's scroll change.
scrollChangedListener: procedure name
with
-
scrollChangedListener
Text
-
SetScrollStateListener
Sets a procedure that will be evaluated each time the component's scroll state changes.
scrollStateListener: procedure name
with
-
scrollStateListener
Text
-
SetViewEditor
Sets a procedure in charge of editing the visible objects.
viewEditor: procedure name
with
-
viewEditor
Text
-
SetViewProvider
Sets the procedure in charge of creating each visible object.
viewCreator: procedure name
with
-
viewCreator
Text
-
SetViewTypeProvider
Sets the procedure in charge of providing the visible object types.
viewTypeProvider: procedure name
with
-
viewTypeProvider
Text
-
SmoothScrollTo
Performs a smooth animated scroll on the RecyclerView until the required position is reached.
with
-
position
Number
-
UpdateData
Updates the component data.
with
-
data
List
-
UseDiffUtil
Enables Diffutils API
with
-
use
Boolean
-
Last updated