<?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>
网友评论