I\'m trying to make an image pager and it looks like I\'ve done it correct according to all the tutorials that I\'ve looked up, but all I get is a blank screen. A breakpoint
The same way destroyItem() needs to remove the view from the container, instantiateItem() needs to add the view to the container.
destroyItem()
instantiateItem()
Just add
container.addView(itemView);
before returning from instantiateItem() and you'll be in business.