系列文章目录



前言

相对布局是相对与父容器或者兄弟组件等,进行布局。

一、如图

在这里插入图片描述

二、具体实现

1.父标签名为RelativeLayout

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

在这里插入图片描述

2.添加元素id

android:id="@+id/one"

在这里插入图片描述

3.选择相对于谁的位置

android:layout_toRightOf="@id/two"
<?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"
    >

<TextView
    android:id="@+id/one"
    android:layout_toRightOf="@id/two"
    android:layout_width="200dp"
    android:layout_height="200dp"
    android:text="1"
    android:textSize="150dp"
    android:gravity="center"
    android:background="#ff1323"
    />
    <TextView
        android:id="@+id/two"
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:text="2"
        android:textSize="150dp"
        android:gravity="center"
        android:background="#ff3"
        />
    <TextView
        android:id="@+id/three"
        android:layout_toRightOf="@id/one"
        android:layout_width="200dp"
        android:text="3"
        android:textSize="150dp"
        android:gravity="center"
        android:layout_height="200dp"
        android:background="#cd526879"
        />



</RelativeLayout>

总结

剩下的还有许多参数,基本上就是修改参数
比如在父元素的右边

 android:layout_alignParentRight="true"
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐