Android webview底部带有admob广告

时间:2011-06-30 01:20:53

标签: android xml android-layout webview admob

我整天都在沉溺于此,并且无法弄明白。我有一个webview,并希望在底部有一个admob广告。我的xml应该是什么样的?我应该在xml中配置admob还是使用代码?谢谢

2 个答案:

答案 0 :(得分:12)

您可以在xml文件中使用webview和admob视图进行垂直线性布局。然后为webview设置android:layout_weight="1",将您的admob视图推送到布局的底部

答案 1 :(得分:6)

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:layout_width="fill_parent" android:id="@+id/rltvLayout1"
    android:layout_height="fill_parent">
    <LinearLayout android:id="@+id/linearLayoutwebview"
        android:layout_height="wrap_content" android:layout_width="wrap_content"
        android:orientation="vertical">
        <WebView android:id="@+id/webView1"
            android:layout_width="fill_parent" android:layout_height="fill_parent"
            android:fitsSystemWindows="true" />
    </LinearLayout>
    <LinearLayout android:layout_width="fill_parent"
        android:id="@+id/ad_layout" android:layout_height="wrap_content"
        android:gravity="bottom" android:layout_alignParentBottom="true"
        android:layout_alignBottom="@+id/home_layout">
        <com.google.ads.AdView android:layout_width="wrap_content"
            android:layout_height="wrap_content" ads:adUnitId="put here Your Id "
            ads:adSize="BANNER" android:id="@+id/adView" ads:refreshInterval="60" />

    </LinearLayout>
</RelativeLayout>