我有一个基本问题,但我找不到任何答案:
我有一个RelativeLayout,里面有一些元素。我在底部留下了一些空间,我想用一些元素填充,例如..LinearLayout。应该使它以这种方式缩放的参数是什么 - “将自己与底部对齐(alignParentBottom),但同时,伸展自己,直到你到达你上面的第一个元素”?
这有可能的解决方案吗?
非常感谢!
答案 0 :(得分:0)
您必须设置以下属性。
android:allignParentBottom=true
和
android:layoutBelow="id of element upto which you want to stretch this element"
我希望这会对你有所帮助。
答案 1 :(得分:0)
这样做
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_below="@id/upper_view_id"
>