1

我想以横向模式在 AdView 中加载 Google Ads。广告以纵向模式加载,但未以横向模式加载。请帮忙

这是我的xml代码:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:orientation="vertical"
tools:context=".MainActivity" >

     <WebView 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/web1"
    android:layout_weight="1"
    />

 <com.google.ads.AdView
    android:id="@+id/adView"
                     android:layout_width="wrap_content"
                     android:layout_height="fill_parent"
                     ads:adUnitId="a151c14ed73ec5f"
                     ads:adSize="SMART_BANNER"
                     ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
                     android:gravity="center"     
                     ads:loadAdOnCreate="true"
                     android:layout_weight="9" />


</LinearLayout>

这段代码是用Java编写的:

AdView adView = (AdView)this.findViewById(R.id.adView);
    adView.loadAd(new AdRequest());

请回复!

AdView 正在显示,但 AdView 中未显示广告。

4

2 回答 2

1

您正在为您的网络视图使用所有空间:

android:layout_width="fill_parent"
android:layout_height="fill_parent"

改用RelativeLayout,并将WebView 放在AdView 的“上方”。

<RelativeLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
     android:layout_width="match_parent"
     android:layout_height="match_parent">


<WebView 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/web1"
    android:layout_above="@id/adView" />

<com.google.ads.AdView
    android:id="@+id/adView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    ads:adUnitId="a151c14ed73ec5f"
    ads:adSize="SMART_BANNER"
    ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
    android:gravity="center"     
    ads:loadAdOnCreate="true"
    android:layout_alignParentBottom="true" />

</RelativeLayout>
于 2013-06-28T16:42:25.897 回答
0

您应该检查错误日志,可能是您的 adview 没有获得所需的适当空间..

于 2013-06-28T16:38:29.910 回答