I have made my application using TListView to show the main dataset as a listing as way to navigate the records. I have used LiveBindings with the Sync <-> * connection.
The major problem is that it loads the entire table into memory. That is slow most of the time, and now taking it to android even worst.
I have not found any example on how to page it. I am not using sql, I am using a custom DataSet (Aurelius) that retrieve the records on demand.
Since I have not found any documentation I have no starting point or code to share.
How to make TListView load records on demand?
PS. there is a similar SO question, but that could be solved by SQL statement. I don´t have SQL available and I wonder if with the actual version of FMX that could be a better approach.