1

我需要在列表视图下方显示按钮。任何帮助将不胜感激。我尝试了不同的方法来让这个特定的布局在 android 上正确显示,但到目前为止我还没有弄清楚这一点。我希望能够在应用程序中间显示一个列表视图,并在列表视图下有按钮。问题是我还有其他需要在列表视图顶部的屏幕上显示的内容,例如选项卡和微调器。列表视图中的所有项目都将有一个图像和图像右侧的一些文本。我想要实现的图像就像这个图像......

安卓布局图片

到目前为止,这是我的代码...

<?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:maxLines="100"
    android:orientation="vertical"
    android:scrollbars="vertical" >

    <Button
        android:id="@+id/readWebpage"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:onClick="onClick"
        android:text="Load Webpage" >
    </Button>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:maxLines="100"
        android:gravity="center"
        android:layout_centerHorizontal="true"
        android:layout_centerInParent="true"
        android:orientation="horizontal">

        <Spinner
            android:id="@+id/genre"
            android:entries="@array/genre_list"
            android:layout_weight="0.40"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="1dp" />

        <Spinner
            android:id="@+id/sort"
            android:entries="@array/sort_list"
            android:layout_weight="0.40"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="1dp" />

        <Spinner
            android:id="@+id/page"
            android:entries="@array/page_list"
            android:layout_weight="0.20"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="1dp" />

    </LinearLayout>

    <LinearLayout
          android:orientation="vertical"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent">

        <ListView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/listView" />

        <Button
            android:id="@+id/previousPage"
            android:layout_weight="0.50"
            android:layout_width="0dp"
            android:layout_height="40dp"
            android:onClick="onClick"
            android:layout_alignParentBottom="true"
            android:text="Previous Page" >
        </Button>

        <Button
            android:id="@+id/nextPage"
            android:layout_weight="0.50"
            android:layout_width="0dp"
            android:layout_height="40dp"
            android:onClick="onClick"
            android:layout_alignParentBottom="true"
            android:text="Next Page" >
        </Button>

    </LinearLayout>

</LinearLayout>
4

3 回答 3

0

用于RelativeLayout控制 的位置ListView

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <Button
        android:id="@+id/readWebpage"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:onClick="onClick"
        android:text="Load Webpage" >
    </Button>
    <LinearLayout
        android:id="@+id/spinner"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/readWebpage"
        android:layout_marginTop="1dp"
        android:orientation="horizontal" >
        <Spinner
            android:id="@+id/genre"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.40"
            android:entries="@array/genre_list" />
        <Spinner
            android:id="@+id/sort"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.40"
            android:entries="@array/sort_list" />
        <Spinner
            android:id="@+id/page"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.20"
            android:entries="@array/page_list" />
    </LinearLayout>
    <ListView
        android:id="@+id/listView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/button"
        android:layout_below="@+id/spinner" />
    <LinearLayout
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:orientation="horizontal" >
        <Button
            android:id="@+id/previousPage"
            android:layout_width="0dp"
            android:layout_height="40dp"
            android:layout_weight="0.50"
            android:onClick="onClick"
            android:text="Previous Page" >
        </Button>
        <Button
            android:id="@+id/nextPage"
            android:layout_width="0dp"
            android:layout_height="40dp"
            android:layout_weight="0.50"
            android:onClick="onClick"
            android:text="Next Page" >
        </Button>
    </LinearLayout>
</RelativeLayout>
于 2013-10-24T00:56:49.177 回答
0

将按钮的 layout_weight 设置为 0,然后将 listview 的 layout_weight 设置为 1。 layout_weight 用于分配额外空间,因此按钮将保持其 40dip 高度,listview 将展开以占用剩余空间

于 2013-10-24T01:00:23.090 回答
0

使用以下代码;

<?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:maxLines="100"
    android:orientation="vertical"
    android:scrollbars="vertical" >

    <Button
        android:id="@+id/readWebpage"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:onClick="onClick"
        android:text="Load Webpage" >
    </Button>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerInParent="true"
        android:gravity="center"
        android:maxLines="100"
        android:orientation="horizontal" >

        <Spinner
            android:id="@+id/genre"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="1dp"
            android:layout_weight="0.40"
            android:entries="@array/genre_list" />

        <Spinner
            android:id="@+id/sort"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="1dp"
            android:layout_weight="0.40"
            android:entries="@array/sort_list" />

        <Spinner
            android:id="@+id/page"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="1dp"
            android:layout_weight="0.20"
            android:entries="@array/page_list" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <ListView
            android:id="@+id/listView"
            android:layout_weight="3"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:layout_weight="1" >

            <Button
                android:id="@+id/previousPage"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:layout_weight="1"
                android:onClick="onClick"
                android:text="Previous Page" >
            </Button>

            <Button
                android:id="@+id/nextPage"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:layout_weight="1"
                android:onClick="onClick"
                android:text="Next Page" >
            </Button>
        </LinearLayout>
    </LinearLayout>

</LinearLayout>
于 2013-10-24T04:14:05.123 回答