我想在横向模式下在AdView中加载Google广告。广告在纵向模式下加载,但未在横向模式下加载。请帮忙
这是我的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中显示。
答案 0 :(得分:0)
你应该检查错误日志可能是你的adview没有获得所需的适当空间..
答案 1 :(得分:0)
您正在使用所有空间进行网络浏览:
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>