Android: Flurry Ads Banner tomando pantalla completa

Estoy implementando anuncios de banner en mi aplicación. Pero se necesita pantalla completa. Mi actividad principal.xml es

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:orientation="vertical" >

<FrameLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/bannerframe" >
</FrameLayout>

<SeekBar
    android:id="@+id/volumeBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="5dp" />

<android.support.v4.view.ViewPager
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

 </LinearLayout>

y en java estoy haciendo este codigo.

FrameLayout fViewGroup = (FrameLayout)findViewById(R.id.bannerframe);
FlurryAgent.onStartSession(appContext, "My API Key is here");
FlurryAgent.initializeAds(appContext);
FlurryAgent.getAd(appContext, "Deer Hunting Calls",fViewGroup,FlurryAdSize.BANNER_TOP, 0);

La siguiente es la captura de pantalla que estoy recibiendo.

Alguien sabe por qué agregar es obtener pantalla completa ??? He intentado todas las opciones en android: layout_width y height con fill_parent, warp_content, match_parent, etc. pero todavía obtengo los mismos resultados.

Respuestas a la pregunta(1)

Su respuesta a la pregunta