Android中的AdMob定位问题

时间:2010-06-17 06:18:18

标签: android layout admob

我的应用程序与AdMob广告集成在一起。当我改变方向时,它应根据方向适合屏幕。在纵向模式下,它工作正常,但当我更改为横向模式时,我在纵向模式下获得的广告尺寸与在横向模式下显示的广告尺寸相同。

我在布局页面中添加以下内容。

<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"
/>

2 个答案:

答案 0 :(得分:6)

这里的答案似乎来自于admob:

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

  

不幸的是我们不支持480下跌   广告此时广告。我们有   统一我们广告的展示   整个网络,我们没有   将我们的广告格式扩展到480   目前像素宽格式。我们   希望尽快为他们增加支持。   我们的SDK以这样的方式构建   当我们介绍更广泛的广告单元   适用于风景手机等大型手机   屏幕,新广告已经是   支持,你不需要   更新到新的SDK。

不幸的是,似乎无法展开广告。

答案 1 :(得分:2)

我有同样的问题,但尚未解决。

我在考虑在AdView内添加Admob的LinearLayoutbackgroundColor完全相同。

类似的东西:

<LinearLayout android:id="@+id/admob_stuff"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="#000000">

  <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"
  />

</LinearLayout>