android_相对布局常见的几种布局形式

android_相对布局常见的几种布局形式_第1张图片


    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"
    tools:context=".SecondActivity">
            android:textColor="#fff"
        android:textSize="30sp"
        android:text="上"
        android:gravity="center"
        android:layout_above="@id/bottom"
        android:background="@color/colorPrimaryDark"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
            android:id="@+id/bottom"
        android:background="@color/colorAccent"
        android:layout_alignParentBottom="true"
        android:text="下"
        android:textSize="30sp"
        android:textColor="#fff"
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="50dp" />

android_相对布局常见的几种布局形式_第2张图片


    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"
    tools:context=".SecondActivity">
            android:gravity="center"
        android:text="上"
        android:textSize="30sp"
        android:textColor="#fff"
        android:id="@+id/top"
        android:layout_width="match_parent"
        android:background="@color/colorAccent"
        android:layout_height="50dp" />
            android:gravity="center"
        android:text="下"
        android:textSize="30sp"
        android:textColor="#fff"
        android:layout_below="@id/top"
        android:background="@color/colorPrimaryDark"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

android_相对布局常见的几种布局形式_第3张图片


    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"
    tools:context=".SecondActivity">
            android:gravity="center"
        android:text="上"
        android:textSize="30sp"
        android:textColor="#fff"
        android:id="@+id/top"
        android:layout_width="match_parent"
        android:background="@color/colorAccent"
        android:layout_height="50dp" />
            android:id="@+id/center"
        android:gravity="center"
        android:text="中"
        android:textSize="30sp"
        android:textColor="#fff"
        android:layout_below="@id/top"
        android:layout_above="@+id/bottom"

        android:background="@color/colorPrimaryDark"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

            android:id="@+id/bottom"
        android:layout_alignParentBottom="true"
        android:gravity="center"
        android:text="下"
        android:textSize="30sp"
        android:textColor="#fff"
        android:background="@color/colorAccent"
        android:layout_width="match_parent"
        android:layout_height="50dp" />

android_相对布局常见的几种布局形式_第4张图片


    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"
    tools:context=".SecondActivity">
            android:layout_toLeftOf="@id/right"
        android:textColor="#fff"
        android:textSize="30sp"
        android:text="左"
        android:gravity="center"
        android:id="@+id/left"
        android:background="@color/colorPrimaryDark"
        android:layout_width="match_parent"
        android:layout_height="50dp" />
            android:layout_alignParentRight="true"
        android:id="@+id/right"
        android:background="@color/colorAccent"
        android:text="右"
        android:textSize="30sp"
        android:textColor="#fff"
        android:gravity="center"
        android:layout_width="wrap_content"
        android:layout_height="50dp" />

android_相对布局常见的几种布局形式_第5张图片


    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"
    tools:context=".SecondActivity">
            android:gravity="center"
        android:text="左"
        android:textSize="30sp"
        android:textColor="#fff"
        android:id="@+id/left"
        android:layout_width="wrap_content"
        android:background="@color/colorAccent"
        android:layout_height="50dp" />
            android:gravity="center"
        android:text="右"
        android:textSize="30sp"
        android:textColor="#fff"
        android:layout_toRightOf="@id/left"
        android:background="@color/colorPrimaryDark"
        android:layout_width="match_parent"
        android:layout_height="50dp" />

android_相对布局常见的几种布局形式_第6张图片


    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"
    tools:context=".SecondActivity">
    

            android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/center"
        android:background="@color/colorAccent"
        android:gravity="center"
        android:text="上"
        android:textColor="#fff"
        android:textSize="30sp" />

            android:id="@+id/center"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_centerInParent="true">

   

        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/center"
        android:background="@color/colorPrimaryDark"
        android:gravity="center"
        android:text="下"
        android:textColor="#fff"
        android:textSize="30sp" />


你可能感兴趣的:(android_相对布局常见的几种布局形式)