Android loop infinite ListView?

I want to make a ListView loop. This means that it looks a bit like a collector widget on iOs, so when a user scrolls up or down, the list just loops over its contents. I suppose you need to write some fancy user adapter for this, but I'm not sure if this is possible.

Afaik, ListView must know in advance the number of elements contained in the adapter. For example, this will be a problem in this case.

Do you have any tips on this?

thanks

+6
android user-interface loops listview infinite
source share
1 answer

Do you mean circular ListView? A similar question has been asked in the past.

+3
source share

All Articles