У меня есть веб-просмотр и рекламное объявление внизу.Он получает рекламу, но не показывает ее, потому что экран слишком маленький.Ранее, когда я запускал его всего за linear layout
, объявление показывалось бы нормально.
Вот код, который у меня сейчас есть:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:orientation="vertical">
<com.google.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
ads:adUnitId="a14e0b54f42c7c7"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"/>
<WebView
android:id="@+id/sdrwebview"
android:layout_width="fill_parent"
android:layout_above="@+id/ad"
android:layout_height="fill_parent"/>
</RelativeLayout>