Hi following is my code, i want AdView to be displayed at the bottom of the screen but in my code its appearing below the last control, I set gravity as bottom as well as layout-gravity as bottom event though there is no luck for me,
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/playscreenbg"
tools:context="com.exp.exp.ExpActivity"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/ll_utilities"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_gravity="right"
android:gravity="right">
<Button
android:id="@+id/btn_highscore"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/btn_highscore_selector"
android:onClick="onClickLevels"
android:enabled="false" />
<Button
android:id="@+id/btn_sound"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/btn_sound_off_selector"
android:onClick="onClickLevels"
android:enabled="false" />
</LinearLayout>
<ImageView
android:id="@+id/img_Logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:layout_marginLeft="40dp"
android:layout_marginRight="40dp"
android:src="@drawable/logo" />
<LinearLayout
android:id="@+id/ll_level_buttons"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:id="@+id/main_easy_button"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:background="@drawable/btn_easy_selector"
android:onClick="onClickLevels"
android:shadowRadius="3.0"
android:textColor="#00e589"
android:textSize="20sp"
android:textStyle="bold"
android:enabled="false" />
<Button
android:id="@+id/main_normal_button"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:layout_marginTop="5dp"
android:background="@drawable/btn_normal_selector"
android:onClick="onClickLevels"
android:shadowRadius="2.0"
android:textColor="#00e589"
android:textSize="20sp"
android:textStyle="bold"
android:enabled="false" />
<Button
android:id="@+id/main_hard_button"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:layout_marginTop="5dp"
android:background="@drawable/btn_hard_selector"
android:onClick="onClickLevels"
android:shadowRadius="2.0"
android:textColor="#00e589"
android:textSize="20sp"
android:textStyle="bold"
android:enabled="false" />
</LinearLayout>
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adViewLandingPage"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adSize="BANNER"
android:gravity="bottom"
android:layout_gravity="bottom"
/>
Please help me.