中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
哈密市| 电白县| 平乡县| 武汉市| 年辖:市辖区| 利津县| 祁东县| 鸡泽县| 富宁县| 枣阳市| 锦州市| 堆龙德庆县| 舞钢市| 昭觉县| 大连市| 冕宁县| 凉山| 华安县| 鹤山市| 思南县| 略阳县| 阜康市| 沧州市| 蛟河市| 合肥市| 乌审旗| 依安县| 奇台县| 九寨沟县| 中方县| 九江市| 和顺县| 天全县| 扶风县| 沂源县| 广丰县| 轮台县| 南川市| 繁峙县| 邵东县| 九龙城区|