gpt4 book ai didi

android - 如何在relativeLayout中显示按钮下方的textview

转载 作者:行者123 更新时间:2023-11-29 14:24:17 26 4
gpt4 key购买 nike

在下面的 xml 布局中,我在同一位置有两个按钮,它们将根据可见性集执行它们的功能。现在我尝试放置两个 TextView 在按钮下方,我希望 TextView 位于两个按钮下方,所以我使用了

android:layout_below="@id/actConnect2_btn_connect"

但在运行时,当连接按钮可见时, TextView 出现在它下方,如果配对按钮可见,它会重叠

如何在两个按钮下方显示 TextView ?

注意:我知道我可以使用 android:layout:marginTop 但我想在没有它的情况下解决它

代码:

<Button
android:id="@+id/actConnect2_btn_pair"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/actConnect2_tv_label_devClass"
android:layout_centerInParent="true"
android:text="@string/str_pair"/>

<Button
android:id="@+id/actConnect2_btn_connect"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/str_connect"
android:layout_below="@+id/actConnect2_tv_label_devClass"
android:layout_alignParentStart="true" />

<TextView
android:id="@+id/actConnect2_tv_label_uuids"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/actConnect2_btn_connect"
android:text="Service's UUID: ">
</TextView>

<TextView
android:id="@+id/actConnect2_tv_uuids"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/actConnect2_tv_label_uuids">
</TextView>

最佳答案

将两个按钮放在 LinearLayout 中,然后将 textview 放在 LinearLayout 下方

关于android - 如何在relativeLayout中显示按钮下方的textview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33474062/

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