Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AdMob orientation problem in Android

My application integrates with AdMob ads. When I change the orientation it should fit the screen depending on orientation. In portrait mode it is working fine, but when I changed to landscape mode the ad size I am getting in portrait mode is the same size of the ad displayed in landscape mode.

I am adding the following in layout page.

<com.admob.android.ads.AdView
   android:id="@+id/ad"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   myapp:backgroundColor="#000000"
   myapp:primaryTextColor="#FFFFFF"
   myapp:secondaryTextColor="#CCCCCC"
/>
like image 876
Aswan Avatar asked Jun 17 '10 06:06

Aswan


1 Answers

It seem that the answer here is from admob:

http://groups.google.com/group/admob-publisher-discuss/browse_thread/thread/17451c55258de1ec?pli=1

Unfortunately we don't support 480 dip wide ads at this time. We have unified the presentation of our ads across the network, and we have not extended our ad formats to a 480 pixels wide format at this time. We hope to add support for them soon. Our SDK is built in such a way that when we introduce the wider ad unit for landscape phones and other larger screens, the new ads will already be supported and you will not need to update to a new SDK.

So unfortunately, seem impossible to stretch the ads.

like image 52
Waza_Be Avatar answered Sep 27 '22 20:09

Waza_Be