我有使用DroidDraw的android xml布局: 链接:https://docs.google.com/document/d/1L3QJVwI9Znmeu1yANJXhDcZGFR70587d4oznu0hrZCw/edit?usp=sharing0
我需要底部对齐最后一个Textview(打印屏幕中指示的黄色)。
即
我需要这个:
答案 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)