gpt4 book ai didi

android - 如何使用 RelativeLayout 使 View 居中?

转载 作者:可可西里 更新时间:2023-11-01 18:55:12 50 4
gpt4 key购买 nike

我想知道如何使用 RelativeLayout 将 View 置于两个其他 View 之间(或 View 与父边缘之间)。

例如,如果我有以下...

enter image description here

如何使用 RelativeLayout 使 Button 在 ImageView 和屏幕底部之间垂直居中?

我正在寻找解决方案...

  • 按钮没有以任何方式拉伸(stretch)
  • 没有嵌套布局

我正在尝试在 XML 布局中(不是以编程方式)执行此操作。

最佳答案

您可以使用以下内容:

<RelativeLayout 
android:layout_below="@id/theImageView"
android:align_parentBottom="true"
android:layout_width="match_parent"
android:layout_height="200dp" >


<Button
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:onClick="onClickButton"
android:textSize="20sp"
android:text="Go"/>

</RelativeLayout>

关于android - 如何使用 RelativeLayout 使 View 居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12153540/

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