3

我正在尝试制作一个TextView顶部、ListView中间和Button底部的屏幕。我希望它TextView始终位于屏幕顶部,而按钮始终位于底部,然后ListView介于两者之间。当ListView超出“中间空间”时,我希望滚动功能仅在TextView和之间Button。通过我的尝试,它只是扩展到TextViewand之外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>
4

2 回答 2

5

看看这是否有帮助(如果你只用它来包装,则应该删除包装(并将 layout_above/below 移动到LinearLayout):ListViewListViewListView

<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" />

<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" />

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/tvLOL"
    android:layout_above="@id/bNyVare"
    android:orientation="vertical" >

    <ListView
        android:id="@android:id/list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />
</LinearLayout>

</RelativeLayout>
于 2012-06-03T19:18:08.603 回答
3

只是@Luksprog 的替代解决方案,尽管这绝对是更复杂布局的方法。我会放弃LinearLayout它周围的ListView东西,因为它不会添加任何东西,除了视图层次结构中不必要的复杂性。

您的问题中描述的相对简单的布局也可以使用 aLinearLayout作为根和权重来编写,ListView以动态填充TextView和之间的所有空间Button。这个重量也将Button一直推到底部,而不会将其推开。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    android:background="@drawable/paper" android:orientation="vertical">

    <TextView android:id="@+id/tvLOL" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_gravity="center_horizontal"
        android:text="Standardvarer" android:textSize="40dp" />

    <ListView android:id="@android:id/list" android:layout_width="fill_parent"
        android:layout_height="0dp" android:layout_weight="1" />

    <Button android:id="@+id/bNyVare" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:text="Tilføj ny vare"
        android:textSize="30dp" />

</LinearLayout>
于 2012-06-04T00:07:35.800 回答