I am developing an app like tweeter with Firebase, but I am stuck on some point. In newsfeed page, I have to get the user timeline objects. But, getting whole in once and adding all of tem to the listview is not a good approach. I think I have to implement two thing;
- Partial load on listview
- Partial get data from Firebase.
There are a lot of ways to implement 1. But, I don't know is there any way to get partial data from Firebase (except limittolast) with scrool view. For example; I want to load 10 items to list and when user scrolls Firebase will load the next 10 item otomatically. Is there any way to implement these two together in an efficient way?