【发布时间】:2015-01-14 04:49:14
【问题描述】:
在 Android 的 RelativeLayout 中,我们可以使用以下代码将 textView 设置在屏幕的中心:
<TextView
android:text="This is TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
结果:
top
-
-
-
-
This is TextView (center vertical)
-
-
-
-
bottom
但我需要将 textView 稍微放在底部,我尝试添加 marginTop 但似乎在使用 layout_centerVertical=true 之后变得不可能。有什么解决办法吗?
预期结果(有点偏底):
top
-
-
-
-
-
-
This is TextView (center vertical slight to bottom)
-
-
bottom
【问题讨论】:
-
好问题,谢谢
标签: android layout center margin vertical-alignment