Infinite ViewPager
This seems possible, but I'm having a little trouble figuring out how to implement a ViewPager that can page indefinitely. My use case is for a calendar that shows a month at a time, but would be able to switch to any month by paging enough times. Currently I'm just extending PagerAdapter , and 3 custom MonthViews are added like so: @Override public Object instantiateItem(View collection, int position) { final MonthView mv = new MonthView(HistoryMonthActivity.this); mv.setLayoutParams(new ViewSwitcher.LayoutParams( android.view.ViewGroup.LayoutParams.MATCH_PARENT, android.view.ViewGroup