底部横幅Android

底部横幅Android,第1张

概述如何在屏幕底部设置横幅?我尝试了RelativeLayout,它保持在底部,但在屏幕外.那是我的简单代码:<LinearLayoutxmlns:android="http://schemas.android.com/apkes/android"android:id="@+id/layout_home"android:layout_width="fill_parent"android:layout_he

如何在屏幕底部设置横幅?
我尝试了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所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1085615.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存