gpt4 book ai didi

android - Android textview的定位

转载 作者:行者123 更新时间:2023-11-30 04:05:10 24 4
gpt4 key购买 nike

有没有办法将 textview 定位到稍微高于居中的 android 按钮?我显然不想为特定屏幕硬编码值,而是要动态缩放的东西。该按钮将始终居中,但是...

提前致谢!

最佳答案

是的,如果你的父布局是 RelativeLayout你可以相对于彼此或相对于父 View 定位 View 这是一个简单的示例(警告没有将其输入 IDE,可能包含拼写错误):

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<Button
android:id="@+id/mBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="I am a Button!"
android:layout_centerInParent="true" />

<TextView
android:id="@+id/mTxt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text"Some Text"
android:layout_above="@+id/mBtn" />

</RelativeLayout>

这将使您的布局大致如下所示:

________________________
| |
| |
| Some Text |
| [I am a Button!] |
| |
| |
|______________________|

关于android - Android textview的定位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11804143/

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