I download a project about ViewPager and CirclePageIndicator. It works well on my tablet and its code is :
Test1Activity.java:
TestFragmentAdapter mA
Android does not support fragments inside of fragments. Either switch your ViewPager
to use a PagerAdapter
that does not use fragments, or do not put the ViewPager
in a fragment.
EDIT:
Now, Android supports fragments inside fragments by using Fragment.getChildFragmentManager() . Have a look at this answer.