relativelayout布局属性_layout软件有哪些

(4) 2024-05-24 19:12

Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说relativelayout布局属性_layout软件有哪些,希望能够帮助你!!!。

RelativeLayout布局是相对布局,如果RelativeLayout中再包含两个RelativeLayout,不会像LinearLayout一样,宽高一样的话会重叠在一起
relativelayout布局属性_layout软件有哪些_https://bianchenghao6.com/blog__第1张
将红色布局放到右上角
relativelayout布局属性_layout软件有哪些_https://bianchenghao6.com/blog__第2张

常见属性

根据父容器定位

layout_alignParentLeft 左对齐
layout_alignParentRight 右对齐
layout_alignParentTop 顶部对齐
layout_alignParentBottom 底部对齐
layout_centerHorizontal 水平居中
layout_centerVertical 垂直居中
layout_centerInParent 中间位置

根据兄弟组件定位

layout_toLeftOf 放置于参考组件的左边
layout_toRightOf 放置于参考组件的右边
layout_above 放置于参考组件的上方
layout_below 放置于参考组件的下方
layout_alignTop 对齐参考组件的上边界
layout_alignBottom 对齐参考组件的下边界
layout_alignLeft 对齐参考组件的左边界
layout_alignRight 对齐参考组件的右边界

通用属性

margin 设置组件与父容器的边距

  1. layout_margin 上下左右偏移
  2. layout_marginLeft
  3. layout_marginRight
  4. layout_marginTop
  5. layout_marginBotton

padding 设置组件内部元素的边距

activity_main.xml

<?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"
    android:padding="100dp">

    <RelativeLayout
        android:id="@+id/relative"
        android:layout_centerInParent="true"
        android:background="#ff0000"
        android:layout_width="100dp"
        android:layout_height="100dp"/>

    <RelativeLayout
        android:layout_toLeftOf="@+id/relative"
        android:background="#00ff00"
        android:layout_marginTop="100dp"
        android:layout_width="100dp"
        android:layout_height="100dp"/>

</RelativeLayout>

relativelayout布局属性_layout软件有哪些_https://bianchenghao6.com/blog__第3张
relativelayout布局属性_layout软件有哪些_https://bianchenghao6.com/blog__第4张

今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

上一篇

已是最后文章

下一篇

已是最新文章

发表回复