如何在Android的主要布局中一直设置Button?

时间:2013-09-04 00:17:17

标签: android xml button layout

嗨,我是Android的新手,我正在制作一个简单的xml布局,一个名为show的按钮应该是主要布局的结尾,我无法弄清楚如何做到这一点,任何人都可以提供一些线索吗?

XML:

<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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<TableLayout 
    android:id="@+id/form"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <TableRow 
        android:id="@+id/fnameRow"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >

        <TextView 
            android:id="@+id/fnameTxt"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" 
            android:text="Firstname"/>

        <EditText 
            android:id="@+id/fnameEdit"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />"

    </TableRow>

    <TableRow 
        android:id="@+id/lnameRow"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >

        <TextView 
            android:id="@+id/lnameTxt"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" 
            android:text="Lastname"/>

        <EditText
            android:id="@+id/lnameEdit"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:ems="10" >

            <requestFocus />
        </EditText>

    </TableRow>

</TableLayout>

<Button 
    android:id="@+id/showBtn"
    android:layout_below="@id/form"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Show" />
</RelativeLayout>

1 个答案:

答案 0 :(得分:4)

尝试将android:layout_alignParentBottom属性添加到按钮