我如何将按钮放在列表下方

时间:2015-11-25 22:19:36

标签: android android-listview

我尝试将按钮放在列表下方,但按钮不会出现。

我使用RelativeLayout。

enter image description here

activity_main.xml中

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

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/Lista"
        >
         <ListView
            android:id="@+id/listFotMultas"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            />
    </RelativeLayout>
            <Button
                android:layout_below="@+id/Lista"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:text="Total Fotomulta"
                android:layout_marginLeft="25dp"
                android:layout_marginRight="25dp"
                android:background="@drawable/estilo_redondoboton"
                />
    </RelativeLayout>

2 个答案:

答案 0 :(得分:0)

我解决了我的问题,删除了按钮

中的属性 layout_below
android:layout_below="@+id/Lista"

在我的按钮 layout_alignParentBottom

中添加该属性
android:layout_alignParentBottom="true"

在我的亲戚@ + id / Lista中添加 layout_marginBottom 属性

android:layout_marginBottom="50dp"

enter image description here

  <RelativeLayout
        android:layout_below="@+id/ListaEncabezado"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="50dp"
        android:id="@+id/Lista"
        >
         <ListView
            android:id="@+id/listFotMultas"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            >
        </ListView>
    </RelativeLayout>

            <Button

                android:layout_width="wrap_content"
                android:layout_alignParentBottom="true"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:text="Total Fotomulta"
                android:layout_marginLeft="25dp"
                android:layout_marginRight="25dp"
                android:background="@drawable/estilo_redondoboton"
                />

    </RelativeLayout>

答案 1 :(得分:0)

你好使用下面的布局你也可以看到按钮: - [注意: - 这个建议是出于这个原因,如果你想使用linearlayout而不是相对布局你可以尝试这种方式]

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">


<ListView
    android:id="@+id/listFotMultas"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1" />

<Button

    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_marginLeft="25dp"
    android:layout_marginRight="25dp"
    android:text="Total Fotomulta" />

谢谢!〜!