Open
Description
The PagingController
can be built with firstPageKey
to indicate initial page to load. Sounds great, but how to "scroll back" to previous pages then?
I'm implementing a players ranking list where the initial page is dynamically set based on position of current user in the leaderboard.
Example
User enters the screen and sees 5th page of the results. He can scroll down to see further pages (6,7,8), but I have to provide some mechanism to be able to scroll up (to pages 4,3,2,1). Is that ever possible?
Already tried to use addStatusListener
/addListener
, but nothing interesting is triggered there.
Activity