5

好吧,AdMob 的情况真的很奇怪。我想将广告放在底部我有一个 LinearLayout。当我这样做时,它永远不会出现。当我把它放在上面时,它完美地显示出来。不知道这里的交易是我的代码。我确实在 LogCat 中收到一条警告,上面写着“没有足够的空间来展示广告!想要 <480,75> 有:<480, 0>”

LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res/mypackage"
 android:id="@+id/mainmenulayout"
 android:orientation="vertical" 
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">

    <ImageView  android:id="@+id/headerpic"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/header"/>

    <ListView android:id="@android:id/list" 
    android:divider="#00000000" 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:drawSelectorOnTop="false"
    android:background="@android:color/transparent"
    android:cacheColorHint="#00000000"
    android:layout_alignParentTop="true">
    </ListView>

    <com.google.ads.AdView 
      android:id="@+id/adView"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      ads:adUnitId="myadunit"
      ads:adSize="BANNER"
    />
 </LinearLayout>

和我的 onCreate():

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.appmenu);

    // Look up the AdView as a resource and load a request.
    AdView adView = (AdView)this.findViewById(R.id.adView);
    adView.loadAd(new AdRequest());

    String[] mainMenuList = getResources().getStringArray(R.array.mainMenuList);
    TypedArray[] picFiles = getResources().obtainTypedArray(R.array.arrayIcon);

    setListAdapter(new MyIconAdapter(mainMenuList, picFiles));

    this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

}  //close onCreate
4

2 回答 2

17

我的猜测是您的列表视图填满了屏幕并将广告视图向下推。试试这个 xml 的列表视图:

<ListView android:id="@android:id/list" 
    android:divider="#00000000" 
    android:layout_width="fill_parent"
    android:layout_height="0px" 
    android:layout_weight="1"
    android:drawSelectorOnTop="false"
    android:background="@android:color/transparent"
    android:cacheColorHint="#00000000"
    android:layout_alignParentTop="true">
    </ListView>

这将使列表视图仅在图像视图和广告视图占据其份额后可用的空间。

于 2011-05-04T03:52:42.953 回答
1

这也可能有帮助...... Admob 广告未显示 - Android

正如 Ted 所说,列表视图可能会占用所有可用的不动产。即使使用 wrap_content,如果列表在 adView 填充之前填充了大量数据,adView 将无法展开和放置广告。

除非您按照我的做法进行硬编码,否则它的高度约为 50dp。不是很优雅,但仍然有效。

于 2011-05-04T04:34:44.127 回答