gpt4 book ai didi

android - 按钮未显示在相对布局中

转载 作者:行者123 更新时间:2023-11-30 03:34:52 27 4
gpt4 key购买 nike

<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 没有显示,我真的想不通

最佳答案

因为button1是对齐父级底部的

android:layout_alignParentBottom="true"

要求button2在button1下面

android:layout_below="@id/button1"

所以button2不可见

关于android - 按钮未显示在相对布局中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16757264/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com