按钮未在相对布局中显示

时间:2013-05-26 07:56:29

标签: android button relativelayout

<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:background="@drawable/main_screen_image"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >
    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="@drawable/facebook_login_button" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/button1"
        android:layout_centerHorizontal="true"
        android:background="@drawable/have_a_look_text_image" />

</RelativeLayout>

任何人都可以告诉我为什么button2没有显示出来,我真的无法弄清楚

1 个答案:

答案 0 :(得分:1)

因为button1与父母的底部对齐

android:layout_alignParentBottom="true"
请求

和button2在button1

下面
android:layout_below="@id/button1"

所以button2不可见