android中布局如何将控件一直放在屏幕底部
推荐于2017-08-12 · 知道合伙人软件行家
关注
展开全部
用相对布局, 宽高占满屏幕,子控制设置android:layout_alignParentBottom = true即可, 可查看以下代码
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_alignParentBottom="true"
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_alignParentBottom="true"
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RelativeLayout>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用relativelayout布局,把某个控件直接拖到这个布局的底端就好了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
以线性布局为例,设置 android:layout_gravity="bottom" 则,控件在屏幕(Activity)的底部
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |