如何在我的layout.xml包含listview项目的底部放置横幅广告admob。 我试图更改layout_height或更改layout_margin但它不起作用。是否有任何建议可以帮助我。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads">
<RelativeLayout
android:id="@+id/search_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:padding="5dp">
<android.support.v7.widget.SearchView
android:id="@+id/filtersearch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff"
app:queryHint="Type something..." />
</RelativeLayout>
<RelativeLayout
android:id="@+id/list_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_below="@+id/search_layout"
android:padding="5dp">
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
tools:listitem="@layout/row">
</ListView>
</RelativeLayout>
<LinearLayout
android:id="@+id/LayAds"
android:layout_width="match_parent"
android:layout_height="150dp"
android:layout_below="@+id/list_layout"
android:gravity="center"
android:orientation="vertical"
android:weightSum="1">
</LinearLayout>
</RelativeLayout>
我收到日志没有足够的空间来展示广告。需要320x50 dp,但只有360x0 dp。谢谢你的帮助