0

I wonder if there is a tutorial or example code how the effect below achieved in Android, or if someone published an adapter already for this... Basically based on the number of results returned the screen is populated with boxes, and as the finger swipes down more boxes will load on demand until the results run out.

Skout view

James Gu
  • 1,382
  • 4
  • 26
  • 39

2 Answers2

0

What you are looking for is a Lazy List Adapter.

There is a great implementation for it. You can check it here. All what you need next is to create the layout of your list rows, i.e the boxes.

Community
  • 1
  • 1
iTurki
  • 16,292
  • 20
  • 87
  • 132
0

This is a GridView. And you can use your custom Load More GridView. This is a custom ListView example of the same. You can implement your own custom GridView similar to this.

Antrromet
  • 15,294
  • 10
  • 60
  • 75