It is longer, but I need to explain.
I have an application that requires displaying the data of thousands of elements in a list. This can be compared to the Google Play Store, which has a large number of applications in a certain category. (Most of these applications use lazy loading, which loads more and more data as the user scrolls down. Another application is the Gmail application’s conversation list. We continue to scroll to download more. We can see this in the version of Google Desktop Search Desktop.)
But above there is a limit to which the list items are filled, in the end it just stops to load more data. But what if this is a list of people's names in alphabetical order. I can’t stop by specifying a few names. Also do not wish to have a download list of a list of alphabets.
What would be the perfect solution?
source
share