欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android布局之RelativeLayout相对布局

时间:2022-04-20 08:59:46|栏目:Android代码|点击:

RelativeLayout是相对布局控件:以控件之间相对位置或相对父容器位置进行排列。

相对布局常用属性:

子类控件相对子类控件:值是另外一个控件的id

android:layout_above----------位于给定DI控件之上
android:layout_below ----------位于给定DI控件之下 
android:layout_toLeftOf -------位于给定控件左边
android:layout_toRightOf ------位于给定控件右边
 android:layout_alignLeft -------左边与给定ID控件的左边对齐
 android:layout_alignRight ------右边与给定ID控件的右边对齐
android:layout_alignTop -------上边与给定ID控件的上边对齐
android:layout_alignBottom ----底边与给定ID控件的底边对齐
android:layout_alignBaseline----对齐到控件基准线

学习导图如下所示:

注:父容器定位的属性值只能是Boolean ,兄弟组件定位的属性值只能是ID

 典型案例(梅花)

<?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">
  <ImageView
    android:id="@+id/img1"
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:layout_centerInParent="true"
    android:src="@mipmap/ic_launcher"/>
  <ImageView
    android:id="@+id/img2"
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:layout_above="@id/img1"
    android:layout_centerHorizontal="true"
    android:src="@mipmap/ic_launcher"/>
  <ImageView
    android:id="@+id/img3"
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:layout_below="@id/img1"
    android:layout_centerHorizontal="true"
    android:src="@mipmap/ic_launcher"/>
  <ImageView
    android:id="@+id/img4"
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:layout_toLeftOf="@id/img1"
    android:layout_centerVertical="true"
    android:src="@mipmap/ic_launcher"/>
  <ImageView
    android:id="@+id/img5"
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:layout_toRightOf="@id/img1"
    android:layout_centerVertical="true"
    android:src="@mipmap/ic_launcher"/>
</RelativeLayout>

以上内容是小编给大家介绍的Android布局之RelativeLayout相对布局相关知识,希望大家喜欢。

上一篇:RecyclerView滑动到指定Position的方法

栏    目:Android代码

下一篇:如何修改Android Studio创建module时默认的compileSdkVersion

本文标题:Android布局之RelativeLayout相对布局

本文地址:http://www.codeinn.net/misctech/199696.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有