Sorry I might not clear.
I have 5 cols and 2 rows of CustomListView.
Each CustomListView will handle few rows, just a few, like 1, 2 etc The size it has in the screen let it show around 10 rows.
HOWEVER there are few cases where 12 or few more rows are needed.
It is not lots of items, just a few, but they are not visible.
I keep this CustomListView for some time before a refresh (a timer is fired, every 30 seconds)
While this does not happen, I want to scroll down the CustomListView that has items that are not visible, for that I will have another timer ticking frequently. It will go thru all the CustomListView and see if there is Items (rows) that are not visible and then Scroll Down one Row per time.
The problem here is:
How to know if there is a Row at the end that is not visible
How to scroll one row per time, considering that the Rows have different heights
How to scroll back to the first Row, to start the process again.