在webview中将admob放在底部

时间:2015-10-09 17:06:05

标签: android webview

我有以下布局,但顶部显示了admob。如何将admob放在底部?

<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="SMART_BANNER"
ads:adUnitId="@string/banner_ad_unit_id"/>

</WebView>

谢谢!

1 个答案:

答案 0 :(得分:2)

您可以将其包装在相对布局中,并在AdView上设置android:layout_alignParentBottom,例如:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <com.google.android.gms.ads.AdView
        android:id="@+id/adView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_alignParentBottom="true"
        ads:adUnitId="@string/admob_unit_id" ads:adSize="BANNER" />

    <WebView android:id="@+id/webView" android:layout_width="fill_parent"
        android:layout_height="fill_parent">
    </WebView>

</RelativeLayout>