0

Could anyone suggest how to show "loading" view when gridview reached the end and need to load another chunk of data using one of the existing endless adapter libraries or custom impementation?

The main problem here is to add view to fill the space across all the columns at the bottom row which seems not to be possible in GridView.

Roman Minenok
  • 9,328
  • 4
  • 26
  • 26

1 Answers1

3

I have posted an answer which integrates pagination for an Endless Scrolling List here:

https://stackoverflow.com/a/13265776/450534

It is too big to post all over again, so am linking to the original answer instead.

Community
  • 1
  • 1
Siddharth Lele
  • 27,623
  • 15
  • 98
  • 151
  • Downvoted. The author clearly asks how to implement a `GridView` with a loading footer. Something your solution never does. – Aleks N. Feb 03 '14 at 14:45
  • @AlaksiejN.: Appreciate the comment. But perhaps, **you** should read the question and the solution linked to more carefully. The solution **IS** for a `GridView`. – Siddharth Lele Feb 03 '14 at 15:22
  • Your solution just shows a progress bar below `GridView` and is not part of the gridview. It can be thought of as a workaround for what author asked, but not the exact solution, since you don't add a `load more` footer to the `GridView` which is part of it, i.e. scrolls together with the rest of the items. – Aleks N. Feb 03 '14 at 17:22