欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

RelativeLayout 相对布局笔记

程序员文章站 2022-03-26 11:40:46
一 、相对布局RelativeLayout 相对布局RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"1 页面右下布局android:layout_alignParentBottom="true" android:layout_alignParentRight="true"!2 在**@+id/view_1**方块的右面android:layout_toRightOf="@...

一 、相对布局

RelativeLayout 相对布局

RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

1 页面右下布局

android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"!

2 在**@+id/view_1**方块的右面

android:layout_toRightOf="@id/view_1"

3 在**@+id/view_1**方块的下面

android:layout_below="@+id/view_1"

线性和相对代码综合:

<?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">
    <View
        android:id="@+id/view_1"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#000000"/>
    <View
        android:id="@+id/view_2"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="#00FF80"
        android:layout_below="@+id/view_1"/>
    <LinearLayout
        android:id="@+id/ll_1"
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:layout_below="@id/view_2"
        android:orientation="horizontal"
        android:background="#AEB404"
        android:padding="15dp" >
            <View
                android:layout_width="100dp"
                android:layout_height="match_parent"
                android:background="#B40404"/>
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#000000"
            android:padding="15dp">
            <View
                android:id="@+id/view_3"
                android:layout_width="100dp"
                android:layout_height="match_parent"
                android:background="#00FF80"
                android:layout_marginRight="15dp"
                />
            <View
                android:id="@+id/view_4"
                android:layout_width="100dp"
                android:layout_height="match_parent"
                android:background="#A9A9F5"
                android:layout_toRightOf="@id/view_3"
                />
        </RelativeLayout>
    </LinearLayout>
</RelativeLayout>

RelativeLayout 相对布局笔记
注意:android:id=“xxxxx”

使用:驼峰式命名法

本文地址:https://blog.csdn.net/weixin_48536465/article/details/108854071