如何在屏幕底部设置横幅?
我尝试使用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" 但没有改变