あなたはハックのものをやってなくてRelativeLayout
を使用していることを行うことができます。広告は、いくつかの奇妙な理由でロードされない場合
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<bla.bla.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="#FF0000"/>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@id/ad"/>
</RelativeLayout>
、ListView
は、すべての利用可能なスペースを取ります。一方、広告が読み込まれると、ListView
は広告と重複しません。
多くのおかげでクリスチャン、私はそれが欲しかったように正確に働いた:) –