我正在尝试制作一个屏幕,其顶部为TextView
,中间为ListView
,底部为Button
。我希望它是TextView
始终是屏幕顶部,按钮始终是底部,然后ListView
介于两者之间。当ListView
超过“中间空格”时,我希望滚动功能仅在TextView
和Button
之间。通过我的尝试,它只会扩展到TextView
和Button
之外。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/paper" >
<TextView
android:id="@+id/tvLOL"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="Standardvarer"
android:textSize="40dp" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/tvLOL"
android:layout_alignBottom="@+id/bNyVare"
android:orientation="vertical" >
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
<Button
android:id="@+id/bNyVare"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:text="Tilføj ny vare"
android:textSize="30dp" />
</RelativeLayout>
答案 0 :(得分:5)
看看这是否有帮助(LinearLayout
包裹ListView
应该被移除(并将layout_above /下移到ListView
)如果你只用它来包裹{{1}而且没有别的):
ListView
答案 1 :(得分:3)
只是@Luksprog的另一种解决方案,尽管这绝对是采用更复杂布局的方法。我会抛弃围绕LinearLayout
的{{1}},因为它不会添加任何内容,除了视图层次结构中不必要的复杂性。
您问题中描述的相对简单的布局也可以使用ListView
作为根和LinearLayout
上的权重来动态填充ListView
和{之间的所有空格{1}}。这个重量也会将TextView
一直推到底部,而不会将其推开。
Button