At the moment the AdView is appearing inside the ViewPager so its blocking the content in the app. How can I get the AdView to appear belo
AdView
ViewPager
You can add ViewPager and AdView inside RelativeLayout and specify android:layout_above="@+id/adView" property to ViewPager so that adView doesn't block the ViewPager contents.
RelativeLayout
android:layout_above="@+id/adView"
adView