I can\'t get my ViewPager not clipping its pages contents.
I\'m currently using ViewPager with a FragmentStatePagerAdapter in
I had the same problem. I fixed this by adding
android:clipChildren="false"
android:clipToPadding="false"
to ViewPager and ViewGroup which is parent of ViewPager
For instance, if you have a layout like that:
then only LinearLayout and ViewPager should have
android:clipChildren="false"
android:clipToPadding="false"