I have Android application with ViewPager implemented like this :
http://www.youtube.com/watch?v=C6_1KznO95A
I don\'t know how to implement AdView below the
OK, you have a couple of problems.
You have 2 options. Use a RelativeLayout but define the AdView first with the ViewPager being defined as above it OR use a LinearLayout and have the ViewPager fill the unused space using layout_weight.
As RelativeLayout
OR as LinearLayout
Personally I'd go with the LinearLayout it feels simpler.