android relative layout example code

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.example.prize.mydemo1.Main3Activity">
    <RelativeLayout
        android:id="@+id/relative1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#FFFFFF">
        <!--layout_alignParentLeft control position on the left side of the layout -->
        <!--layout_alignParentTop control position above the layout -->
        <view
            android:id="@+id/view1"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:background="#550000"
            />
        <!--layout_below the current control is below the target control-->
        <!--layout_alignRight aligns to the right of the target control -->
        <view
            android:id="@+id/view2"
            android:layout_width="50dp"
            android:layout_height="match_parent"
            android:layout_below="@+id/view1"
            android:layout_alignRight="@+id/view1"
            android:background="#FF2222"

            />
        <!--layout_alignParentBottom control position is below the layout -->
        <!--layout_toLeftOf The current control is to the left of the target control -->
        <view
            android:id="@+id/view3"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_alignParentBottom="true"
            android:layout_toLeftOf="@id/view2"
            android:background="#FF7777"

            />
        <!--layout_above The current control is above the target control -->
        <view
            android:id="@+id/view4"
            android:layout_width="50dp"
            android:layout_height="0dp"
            android:layout_above="@+id/view3"
            android:layout_below="@+id/view1"
            android:background="#FF8F44"/>
        <view
            android:id="@+id/view5"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_toLeftOf="@+id/view2"
            android:layout_below="@id/view1"
            android:layout_toRightOf="@id/view4"
            android:background="#FFDA44"/>
        <view
            android:id="@+id/view6"
            android:layout_width="50dp"
            android:layout_height="match_parent"
            android:layout_below="@+id/view5"
            android:layout_above="@+id/view3"
            android:layout_toLeftOf="@+id/view2"
            android:background="#D6FF33"
            />
        <view
            android:id="@+id/view7"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_above="@+id/view3"
            android:layout_toLeftOf="@+id/view6"
            android:layout_toRightOf="@+id/view4"
            android:background="#B4FF44"
            />
        <view
            android:id="@+id/view8"
            android:layout_width="50dp"
            android:layout_height="match_parent"
            android:layout_above="@+id/view7"
            android:layout_toRightOf="@+id/view4"
            android:layout_below="@+id/view5"
            android:background="#99FF55"
            />
        <view
            android:id="@+id/view9"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_below="@+id/view5"
            android:layout_toLeftOf="@+id/view6"
            android:layout_toRightOf="@+id/view8"
            android:background="#44FF44"
        />
        <view
            android:id="@+id/view10"
            android:layout_width="50dp"
            android:layout_height="match_parent"
            android:layout_toLeftOf="@+id/view6"
            android:layout_below="@+id/view9"
            android:layout_above="@+id/view7"
            android:background="#55FF99"
            />
        <view
            android:id="@+id/view11"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_above="@+id/view7"
            android:layout_toLeftOf="@+id/view10"
            android:layout_toRightOf="@+id/view8"
            android:background="#55FFDD"
            />
        <view
            android:id="@+id/view12"
            android:layout_width="50dp"
            android:layout_height="match_parent"
            android:layout_above="@+id/view11"
            android:layout_toRightOf="@+id/view8"
            android:layout_below="@+id/view9"
            android:background="#55DDFF"
            />
        <view
            android:id="@+id/view13"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_below="@id/view9"
            android:layout_toRightOf="@+id/view12"
            android:layout_toLeftOf="@+id/view10"
            android:background="#44B4FF"
            />




    </RelativeLayout>

</LinearLayout>


layout look

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325833833&siteId=291194637