1

リストビューの下にボタンを表示する必要があります。どんな助けでも大歓迎です。この特定のレイアウトをAndroidで正しく表示するためにさまざまな方法を試しましたが、これまでのところ、これを理解できていません. アプリの中央にリストビューを表示し、リストビューの下にボタンを表示できるようにしたいと考えています。問題は、タブやスピナーなど、リストビューの上に画面に表示する必要がある他のものがあることです。リストビュー内のすべてのアイテムには、画像と画像の右側にあるテキストの両方があります。実現したいイメージはこんなイメージ…

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

ボタンの layout_weight を 0 に設定してから、リストビューの layout_weight を 1 に設定します。layout_weight は余分なスペースを割り当てるために使用されるため、ボタンは 40dip の高さを維持し、リストビューは拡大して残りのスペースを占有します。

于 2013-10-24T01:00:23.090 に答える