要在Android父容器中垂直居中一個View元素,可以使用RelativeLayout或ConstraintLayout來實現。以下是使用RelativeLayout實現的示例代碼:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
在上面的示例中,將View元素設置為垂直和水平居中,通過設置android:layout_centerVertical="true"
和android:layout_centerHorizontal="true"
屬性來實現。
另外,也可以使用ConstraintLayout來實現垂直居中,示例代碼如下:
<ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
</ConstraintLayout>
在上面的示例中,通過設置app:layout_constraintTop_toTopOf="parent"
和app:layout_constraintBottom_toBottomOf="parent"
屬性將View元素垂直居中。