如何将android Textview元素置于屏幕底部

时间:2015-03-05 12:48:12

标签: android html css

我有使用DroidDraw的android xml布局: 链接:https://docs.google.com/document/d/1L3QJVwI9Znmeu1yANJXhDcZGFR70587d4oznu0hrZCw/edit?usp=sharing0

enter image description here

我需要底部对齐最后一个Textview(打印屏幕中指示的黄色)。

我需要这个:

enter image description here

4 个答案:

答案 0 :(得分:1)

尝试使用

android:alignParentBottom="true"

如果我看到你的TextView的父ViewGroup是RelativeLayout

答案 1 :(得分:0)

将父级相对布局属性设置为:

android:layout_gravity = "bottom | left" 

答案 2 :(得分:0)

在相对布局中使用:

    android:alignParentBottom="true" 

和在线性布局中使用:

    android:layout_weight="1.0"
    android:gravity="bottom|right"

答案 3 :(得分:0)

这篇文章诀窍。

stackOverflow link

我需要在布局上实现layout_weight。基本上定义标题,内容和页脚的权重