动态扩大空间?

时间:2011-05-14 19:13:20

标签: android layout space expand

有没有办法将较高内容与屏幕上的较低内容分开?因此,无论上部区域是什么,下部区域都保持在屏幕底部。我尝试过gravity = bottom等等。我尝试在顶部和底部之间插入某种布局,希望它能保持扩展(从而将两者分开)。感谢您提供的任何帮助。

1 个答案:

答案 0 :(得分:2)

答案:RelativeLayout

示例:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TextView
        android:text="TOP"
        android:layout_alignParentTop="true"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
    </TextView>
    <TextView
        android:text="BOTTOM"
        android:layout_alignParentBottom="true"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
    </TextView>
</RelativeLayout>