本文介绍: 第一阶段—第四步—03
<?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">

    <!--
        android:layout_centerInParent  正中
        android:layout_alignParentLeft  居左
        android:layout_alignParentRight  居右
        android:layout_alignParentTop  居上
        android:layout_alignParentBottom  居下
        android:layout_centerHorizontal  水平居中
        android:layout_centerVertical  垂直居中
    -->
    <TextView
        android:id="@+id/center"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:text="屏幕正中"
        android:textSize="30sp"
        android:background="#ff0000"
        android:layout_centerInParent="true">
    </TextView>

    <!--
    1.在参照物的某边
        android:layout_toLeftOf  在id的左边
        android:layout_toRightOf  在id的右边
        android:layout_above  在id的上边
        android:layout_below  在id的下边
    2.在参照物的边线对齐
        android:Layout_layout_alignTop  上边线对齐
        android:Layout_layout_alignBottom  下边线对齐
        android:Layout_layout_alignLeft  左边线对齐
        android:Layout_layout_alignRight  右边线对齐

    -->

    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:text="中偏左上"
        android:textSize="30sp"
        android:background="#00ff00"
        android:layout_toLeftOf="@id/center"
        android:layout_above="@id/center">
    </TextView>
    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:text="中偏右上"
        android:textSize="30sp"
        android:background="#00ff00"
        android:layout_above="@id/center"
        android:layout_toRightOf="@id/center">
    </TextView>
    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:text="中偏左下"
        android:textSize="30sp"
        android:background="#00ff00"
        android:layout_toLeftOf="@id/center"
        android:layout_below="@id/center">
    </TextView>
    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:text="中偏右下"
        android:textSize="30sp"
        android:background="#00ff00"
        android:layout_toRightOf="@id/center"
        android:layout_below="@id/center">
    </TextView>

</RelativeLayout>

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注