我创建了一个ScrollView并希望它扩展到可用空间,而不必为它设置固定高度(即“250px”)。
因此,我创建了一个RelativeLayout。基本概要如下:
<RelativeLayout>
<LinearLayout
android:id="@+id/x" >
<TextView
android:text="Title" ... />
</LinearLayout>
<ScrollView
android:id="@+id/y"
android:layout_below="@id/x" />
<LinearLayout
android:layout_below="@id/y"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal|bottom" >
<Button ...>
</LinearLayout>
</RelativeLayout>
布局的想法是将标题置于顶部,按钮位于屏幕底部附近,ScrollView位于这两者之间。
问题是,我仍然需要在ScrollView的定义中使用android_height,所以它仍然固定在那个高度。
我该如何解决这个问题?
感谢。
答案 0 :(得分:1)
似乎这个布局可能更简单,使用LinearLayout作为外部元素,orientation="vertical"
将所有元素的layout_height设置为wrap_content。将除scrollView之外的所有元素的权重设置为0,将scrollView的权重设置为1。