I have a webview and an admob ad onthe bottom. It is getting the ad but not displaying it because the screen is too Small. Previosuly , when I ran it in just a linear layout the ad would show up fine.

Here is the code i have now:

<?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>

Any ideas? thanks a bunch

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Try swapping the views around... your Webview is probably covering the Adview

<RelativeLayout...>
     <WebView.../>
     <com.google.ads.AdView.../>
</RelativeLayout>
link|improve this answer
no luck. it says the same thing in log cat Not enough space to show ad! – SergioRa Jun 30 '11 at 2:20
any other ideas what it could be? – SergioRa Jun 30 '11 at 2:27
Try to find out how much exactly not enough is – mibollma Jun 30 '11 at 2:32
the log cat says Wants: <320, 50> has: <300,371>. But as I said before It is working if it is just in a linear layour but I think the view is compressing it or something. What do you think? – SergioRa Jun 30 '11 at 2:34
I assume you are on mdpi like 320x480. Why is it you only got a width of 300px it should be 320px. Try to figure out where you lose those 20. You probably use some margin or padding in your layout. – mibollma Jun 30 '11 at 2:38
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.