我正在关注google的listview教程(http://developer.android.com/resources/tutorials/views/hello-listview.html),我正在尝试将广告视图添加到我的列表视图中(以便它始终保持在顶部),但我不能让它工作。我尝试过relativelayout和linear但我无法让它工作。我尝试用按钮替换广告,但按钮也没有显示。现在我正在使用这段代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="bannerID"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"/>
<ListView android:id="@+id/listView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</LinearLayout>
此代码在图形布局中看起来不错,但是当我运行应用程序时,它会被list_item.xml中的textview覆盖。任何人都知道如何让这个工作?真的很感激。
答案 0 :(得分:0)
尝试将ListView中的layout_height更改为wrap_content
答案 1 :(得分:0)
将layout_height更改为wrap_content而不是fill_parent
<ListView android:id="@+id/listView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>