Reputation: 91
How can I create a circular container items to create the effect of circular movement like a carrusell in codenameone?
When the last element showed in the screen arrise the visibility, then the first item it show from bottom and if I touch this container to UP, then the first item it showed from below of the container.
Upvotes: 1
Views: 48
Reputation: 52760
This isn't possible in a layout since components map to specific locations. However, List supports this functionality using:
list.setFixedSelection(List.FIXED_NONE_CYCLIC);
Upvotes: 0