美文网首页
2019-05-16

2019-05-16

作者: 神乐g | 来源:发表于2019-05-18 15:38 被阅读0次
    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <!-- 在容器中央 -->
        <View
            android:id="@+id/view1"
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:background="#444"
            android:layout_centerInParent="true"/>
        <!-- 在中间方块的上方 -->
        <View
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:background="#666"
            android:layout_above="@id/view1"
            android:layout_centerHorizontal="true"/>
        <!-- 在中间方块的下方 -->
        <View
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:background="#666"
            android:layout_below="@id/view1"
            android:layout_centerHorizontal="true"/>
        <!-- 在中间方块的左边 -->
        <View
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:background="#888"
            android:layout_toLeftOf="@id/view1"
            android:layout_centerVertical="true"/>
        <!-- 在中间方块的右边 -->
        <View
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:background="#888"
            android:layout_toRightOf="@id/view1"
            android:layout_centerVertical="true"/>
    
    </RelativeLayout>
    

    相关文章

      网友评论

          本文标题:2019-05-16

          本文链接:https://www.haomeiwen.com/subject/qdniaqtx.html