I'm trying to build an photo gallery app, and then I have a look at the Inflikr app for Flickr on Google PLay Store.
What I really love from this App is that, even if you don't have the content, the gridview (in the top Activity) will scroll smoothly to the endless bottom (meaning no bottom at all). So my question is How could I adapt/create that kind of grid/list view?
What I have tried: I successfully created a paging gridview that will lazily load the content. But if I scroll the view to the bottom (then the gridview will load more content), it will stop there, wait for new content to be inserted by adapter, then user can continue scrolling. Now I want to be able to scroll endlessly event when new content hasn't been loaded.
Thanks in advance.