我有以下与ListActivity对应的XML文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/classview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="xxxx" >
</com.google.ads.AdView>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
我在ListActivity中调用这个Java代码:
public void setupAd(){
AdRequest adRequest = new AdRequest();
adRequest.addTestDevice("xxxx");
AdView adView = (AdView) findViewById(R.id.adView);
adView.loadAd(adRequest);
}
当我查看XML文件的图形布局时,似乎整齐地将广告横幅放在ListView之上。但是,当我运行我的实际应用时,ListView似乎占用整个屏幕,可能会阻止广告。谁知道什么是错的?
答案 0 :(得分:0)
问题是你的ListView有layout_height =“fill_parent”。
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
/>
而是使用wrap_content并使用layout_weight =“1”来告诉它消耗任何未使用的空间。