91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
新竹市| 马公市| 鸡泽县| 宁阳县| 六安市| 大同县| 汉源县| 平和县| 视频| 龙山县| 武川县| 江北区| 宁波市| 怀化市| 育儿| 荣成市| 盐边县| 萨迦县| 蓝田县| 阿城市| 万全县| 凤阳县| 永和县| 垣曲县| 杂多县| 西安市| 黄冈市| 汪清县| 科技| 肇庆市| 湖口县| 饶阳县| 保山市| 图木舒克市| 磐安县| 托克逊县| 泸州市| 固阳县| 红安县| 北京市| 文水县|