画面下部にバナーを設定するにはどうすればよいですか?
私はRelativeLayoutを試してみましたが、画面の外側にあります。
それは私の単純なコードです:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_home"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background"
android:orientation="vertical">
<LinearLayout
android:id="@+id/layout_body"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background2"
android:orientation="vertical">
......
</LinearLayout>
<RelativeLayout
android:id="@+id/layout_banner"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
....
</RelativeLayout>
</LinearLayout>
アップデート
android:layout_alignParentBottom = "true"を設定しましたが、変更していません