如何在屏幕底部设置横幅?
我尝试了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”但没有更改
解决方法:
将以下XMl代码用于底部的展示横幅.
<relativeLayout 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"> <linearLayout androID:ID="@+ID/layout_body" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:background="@drawable/background2" androID:orIEntation="vertical" androID:layout_above="@+ID/layout_banner"> ...... </linearLayout> <relativeLayout androID:ID="@+ID/layout_banner" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:layout_alignParentBottom="true"> .... </relativeLayout></relativeLayout>
总结 以上是内存溢出为你收集整理的底部横幅Android全部内容,希望文章能够帮你解决底部横幅Android所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)