• 【Android】相对布局(RelativeLayout)最全解析


    一、相对布局(RelativeLayout)概述

    相对布局(RelativeLayout)是一种根据父容器和兄弟控件作为参照来确定控件位置的布局方式。
    在这里插入图片描述

    使用相对布局,需要将布局节点改成RelativeLayout,基本格式如下:

     
    <RelativeLayout 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"
        tools:context=".MainActivity">
     ....
        
    RelativeLayout>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    二、根据父容器定位

    在相对布局中,可以通过以下的属性让的组合让控件处于父容器左上角、右上角、左下角、右下角、上下左右居中,正居中等九个位置。属性如下:

    • android:layout_alignParentLeft="true" 父容器左边
    • android:layout_alignParentRight="true" 父容器右边
    • android:layout_alignParentTop="true" 父容器顶部
    • android:layout_alignParentBottom="true" 父容器底部
    • android:layout_centerHorizontal="true" 水平方向居中
    • android:layout_centerVertical="true" 垂直方向居中
    • android:layout_centerInParent="true" 水平垂直都居中
      在这里插入图片描述
      举例:给一个控件添加 android:layout_alignParentRight="true" 和- android:layout_alignParentTop="true" 属性后该控件处于父容器右上角在这里插入图片描述

    给一个控件添加 android:layout_alignParentLeft="true"android:layout_centerVertical="true" 属性后该控件处于父容器左边垂直居中位置
    在这里插入图片描述

    三、根据兄弟控件定位

    在相对布局中,还支持通过已确定位置的控件作为参考来确定其他控件的位置,以下的属性让的组合让控件处于另外控件左上角、右上角、左下角、右下角、正上方、正下方、正左方、正右方等位置。属性如下:

    • android:layout_toLeftOf="@+id/button1" 在button1控件左方

    • android:layout_toRightOf="@+id/button1" 在button1控件右方

    • android:layout_above="@+id/button1" 在button1控件上方

    • android:layout_below="@+id/button1" 在button1控件下方

    • android:layout_alignLeft="@+id/button1" 与button1控件左边平齐

    • android:layout_alignRight="@+id/button1" 与button1控件右边平齐

    • android:layout_alignTop="@+id/button1" 与button1控件上边平齐

    • android:layout_alignBottom="@+id/button1" 与button1控件下边平齐
      在这里插入图片描述

    给一个控件添加 android:layout_toLeftOf="@+id/button1"android:layout_below="@+id/button1" 属性后该控件处于button1的左下方位置
    在这里插入图片描述

    给一个控件添加 android:layout_toLeftOf="@+id/button1"layout_alignTop="@+id/button1" 属性后该控件处于button1的正左方
    在这里插入图片描述

  • 相关阅读:
    【知识学习】网络空间安全概论复习参考资料链接
    ESP8266使用记录(四)
    SaaSBase:什么是逸创云客服?
    vue项目打包优化
    【LeetCode】655. 输出二叉树
    基于React俄罗斯方块h5小游戏源码响应式支持PC+手机
    leetcode 39. 组合总和(完全背包问题)
    淘宝数据分析在商业活动的具体应用
    SpringBoot 集成 AKKA
    MFIF:Deep Regression Pair Learning
  • 原文地址:https://blog.csdn.net/huweiliyi/article/details/126448069