I have used the following in android xml. Whenever I'm scrolling the page the admob ad is overlapping the some part of Image from bottom.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#31352e" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="330dp"
android:background="@drawable/pic_one"
android:scaleType="fitXY" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="fill_parent"
android:layout_height="330dp"
android:layout_margin="5dp"
android:background="#fff"
android:scaleType="fitXY"
android:src="@drawable/pic_two" />
<ImageView
android:id="@+id/imageView3"
android:layout_width="fill_parent"
android:layout_height="330dp"
android:layout_margin="5dp"
android:background="#fff"
android:scaleType="fitXY"
android:src="@drawable/pic_three" />
<ImageView
android:id="@+id/imageView4"
android:layout_width="fill_parent"
android:layout_height="330dp"
android:layout_margin="5dp"
android:background="#fff"
android:scaleType="fitXY"
android:src="@drawable/pic_four" />
<ImageView
android:id="@+id/imageView5"
android:layout_width="fill_parent"
android:layout_height="330dp"
android:layout_margin="5dp"
android:background="#fff"
android:scaleType="fitXY"
android:src="@drawable/pic_five" />
</LinearLayout>
</ScrollView>
<com.google.ads.AdView
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
ads:adSize="SMART_BANNER"
ads:adUnitId="ID here"
ads:loadAdOnCreate="true"
ads:testDevices="TEST_EMULATOR" />
</RelativeLayout>
However, the ad still overlaps the ImageView
How do I make the screen adjust when the ad loads?