1
<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,我真的无法弄清楚

4

1 回答 1

1

因为 button1 与父级底部对齐

android:layout_alignParentBottom="true"

并且要求 button2 在 button1 下面

android:layout_below="@id/button1"

所以button2不可见

于 2013-05-26T07:59:06.733 回答