亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

Android父容器中怎么垂直居中一個View元素

小億
133
2024-04-08 09:32:38
欄目: 編程語言

要在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元素垂直居中。

0
靖江市| 新闻| 庆元县| 射洪县| 库车县| 清流县| 同心县| 漳浦县| 什邡市| 清涧县| 阿巴嘎旗| 虞城县| 商丘市| 恩施市| 新邵县| 平湖市| 博客| 大港区| 汨罗市| 锡林浩特市| 闸北区| 叶城县| 修武县| 宁城县| 信宜市| 台南县| 武穴市| 永定县| 封开县| 万年县| 武夷山市| 汝阳县| 宜春市| 砀山县| 乌拉特前旗| 武冈市| 东阳市| 安泽县| 自贡市| 丰城市| 陕西省|