将按钮放在页面底部

时间:2015-03-10 22:46:28

标签: android xml layout

我无法在屏幕右下角的应用程序中放置唯一按钮。代码可以在下面找到:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingTop="16dp"
android:paddingBottom="16dp" >

<ExpandableListView
    android:id="@+id/exp_list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:divider="#A4C739"
    android:dividerHeight="0.5dp"
    android:indicatorLeft="?android:attr/expandableListPreferredItemPaddingLeft" >

</ExpandableListView>

<Button
    android:id="@+id/btnDisplayMessage"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/exp_list"
    android:layout_below="@+id/exp_list"
    android:layout_marginLeft="40dp"
    android:gravity="bottom"
    android:text="@string/next" />
</RelativeLayout>

2 个答案:

答案 0 :(得分:2)

试试这个

  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingTop="16dp"
android:paddingBottom="16dp" >

<ExpandableListView
    android:id="@+id/exp_list"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:divider="#A4C739"
    android:dividerHeight="0.5dp"
    android:layout_marginBottom="60dp"
    android:indicatorLeft="?android:attr/expandableListPreferredItemPaddingLeft" >

</ExpandableListView>

<Button
    android:id="@+id/btnDisplayMessage"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"

    android:text="@string/next" />

</RelativeLayout>

答案 1 :(得分:0)

这应该指向正确的方向:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:paddingTop="16dp"
    android:paddingBottom="16dp">



    <Button
        android:id="@+id/btnDisplayMessage"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true"
        android:text="@string/next" />

    <ExpandableListView
        android:id="@+id/exp_list"
        android:layout_above="@id/btnDisplayMessage"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:divider="#A4C739"
        android:dividerHeight="0.5dp"
        android:indicatorLeft="?android:attr/expandableListPreferredItemPaddingLeft">

    </ExpandableListView>
</RelativeLayout>