Android-веб-сайт с рекламой AdMob внизу - PullRequest
3 голосов
/ 30 июня 2011

Я весь день ломал голову над этим и не мог этого понять. У меня есть веб-просмотр и я хотел бы разместить рекламу Adobob внизу. Как должен выглядеть мой xml? я должен настроить admob в XML или с помощью кода? спасибо

Ответы [ 2 ]

12 голосов
/ 30 июня 2011

Вы можете иметь вертикальную линейную компоновку со своим веб-представлением и просмотром AdMob в XML-файле. Затем, установив android:layout_weight="1" для веб-просмотра, вы переместитесь в нижнюю часть макета

.
6 голосов
/ 20 июля 2011
<?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>
...