简体   繁体   中英

Admob advertisement (Android) is to small

I placed a admob advertisement in my Android App ( Block Crusher ) and on QVGA the advertisment is smaller then the screen. On bigger resolutions there is no problem.

Admob广告小

I used the following xml to add the admob advertisement to the relative layout:

<com.google.ads.AdView
    android:id="@+id/ad"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    app:adSize="BANNER"
    app:adUnitId="0000000000" />

The width of my view is set to fill_parent and when I watch the hierarchy viewer I see that the view is the full width. Still the advertisment is shown as above.

I have this problem both in the emulator as on a QVGA phone.

Anybody else has this problem? And know how to resolve this?

If you wrap it in a LinearLayout, then assign it a weight, and/or assign height=50dip you should fill the area.

Banner's base are 320x50.

当我将Admob SDK更新到版本4.1.0时,此问题已修复。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM