1

我有一个 LinearLayout(垂直),它应该包含 3 个元素,顺序如下:textview、listview 和 button。列表视图可能非常高,因此为了保持所有 3 个元素可见,我将 3 个元素分别放在另一个布局中。所以我的结构是这样的:

linear layout (vertical)
  linear layout (horizontal)
    textview
  linear layout (vertial)   *
    listview
  relative layout
    button

为了让它工作,我为仅包含列表视图(*)的垂直线性布局设置了一个固定高度,但我知道这是一个糟糕的选择,因为在更大的设备上会有很多空白空间。我该如何解决?

谢谢

4

3 回答 3

0

以这种方式实现您的布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <TextView
        android:id="@+id/mTextView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:gravity="center"
        android:padding="10dp"
        android:text="Header Text" />

    <ListView
        android:id="@+id/mListView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_above="@+id/mButton"
        android:layout_below="@+id/mTextView" >
    </ListView>

    <Button
        android:id="@+id/mButton"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:text="Button1" />

</RelativeLayout>
于 2013-11-08T19:48:54.623 回答
0

LinearLayout(*) 的用户百分比值,因此它们占父级高度的百分比,

其余的,如果您希望它们占用剩余空间,请添加属性:android:layout_weight:1

于 2013-11-08T18:02:16.227 回答
0
// try this
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="5dp"
    android:orientation="vertical">

    <LinearLayout
        android:layout_height="wrap_content"
        android:layout_width="match_parent">

        <TextView
            android:id="@+id/textview"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:text="textview"/>
    </LinearLayout>

    <LinearLayout
        android:layout_height="0dp"
        android:layout_width="match_parent"
        android:layout_marginTop="5dp"
        android:layout_weight="1">

        <ListView
            android:layout_height="match_parent"
            android:layout_width="match_parent"
            android:cacheColorHint="#00000000"
            android:divider="@null"
            android:dividerHeight="0dp"
            android:smoothScrollbar="true"
            android:id="@+id/listview"/>
    </LinearLayout>

    <LinearLayout
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:layout_marginTop="5dp"
        android:gravity="center">
        <Button
            android:id="@+id/button"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:text="button"/>
    </LinearLayout>

</LinearLayout>
于 2013-11-09T04:13:18.343 回答