当前位置: 首页 > ds >正文

android中常见布局及其约束

0 布局的定义

布局可以理解为一种​​容器​​,用于​​组织与排列界面上的控件​​。

  • 布局是一个相框,控件就是你要展示的照片。•

  • 你(布局规则)决定这些照片怎么排列:是从上到下整齐放(LinearLayout),还是自由定位(ConstraintLayout),还是全部叠在一起(FrameLayout)。

🔹 ​​布局的本质是树状结构​​:一个布局可以包含多个子布局或控件,子布局又可以继续嵌套,从而形成复杂的 UI 结构。

🧠 ​​常见问题:为什么别人写的布局能实现效果,我的却不行?​

很多时候是因为对​​布局类型及其属性规则​​不了解,尤其是某些属性是由​父布局决定的​​,而不是通用的。


一、布局中的属性来源分类

我们在 XML 布局文件中写的各种属性,大致可以分为以下两类:


✅ 1. 来自 ​​View 本身​​ 的属性(通用属性,大多数控件都支持)

这些属性是 ​​Android 控件共有的基本属性​​,比如:

android:id:为控件设置唯一标识符

android:layout_width:控件的宽度(如 match_parentwrap_content

android:layout_height:控件的高度

android:text:文本内容(TextView、Button 等)

android:textSize:字体大小

android:background:背景颜色或图片

android:paddingandroid:margin:内边距和外边距

android:textColor:文字颜色

📌 这些属性在任何控件中基本都有效,因为它们定义在 android.view.View或其子类中。


✅ 2. 来自 ​​父布局的 LayoutParams​​(布局参数,取决于当前控件所在的父布局类型

这些属性 ​不是控件本身的属性,而是由父布局决定的布局行为​,比如:

layout_gravity(在某些布局中控制控件在其父容器中的对齐方式)

layout_centerInParent(居中,但只有特定父布局支持)

layout_weight(权重,LinearLayout 特有)

layout_belowlayout_toRightOf(RelativeLayout 特有)

app:layout_constraintXXX(ConstraintLayout 特有)

⚠️ ​​重要提醒:​

如果你在一个布局中使用了 ​只属于某种父布局的属性,但该控件的实际父布局并不支持它,那么这个属性虽然不会报错,但也不会生效!​

例如:在 ConstraintLayout中使用 layout_centerInParent是无效的,因为它是 RelativeLayout的属性

如下面两张图,layout_centerInParent在父布局RelativeLayout中是生效的,但是在ConstraintLayout中不会报错,但是不会生效。

实际中我们在判断这个布局是否有这个属性可以通过这个方式,只要在android studio中能显示,说明就有这个属性。

二  常见布局体系总栏(详细参数去andorid官网学习)

2.1 LinearLayout (线性叠加布局):

  • 垂直方向:下一个子控件从上一个控件的底部开始排列

  • 水平方向:下一个子控件从上一个控件的右边开始排列

方法1:在xml中并且布局,然后直接在代码中加载

1.1.1 直接在Java中实现布局,不使用xml

public class MainActivity extends AppCompatActivity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);// 1. 创建 RelativeLayout 作为根布局RelativeLayout relativeLayout = new RelativeLayout(this);relativeLayout.setLayoutParams(new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.MATCH_PARENT,RelativeLayout.LayoutParams.MATCH_PARENT));relativeLayout.setBackgroundColor(Color.WHITE);// 2. 创建 LinearLayout 并设置属性LinearLayout linearLayout = new LinearLayout(this);linearLayout.setOrientation(LinearLayout.VERTICAL);linearLayout.setPadding(16, 16, 16, 16);linearLayout.setBackgroundColor(0xFF03A9F4); // holo_blue_light// 3. 添加子控件TextView textView = new TextView(this);textView.setText("我是居中的");textView.setTextSize(18);textView.setTextColor(Color.WHITE);linearLayout.addView(textView);Button button = new Button(this);button.setText("点我");linearLayout.addView(button);// 4. 设置 LinearLayout 在 RelativeLayout 中居中RelativeLayout.LayoutParams llParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT,RelativeLayout.LayoutParams.WRAP_CONTENT);llParams.addRule(RelativeLayout.CENTER_IN_PARENT, RelativeLayout.TRUE);linearLayout.setLayoutParams(llParams);// 5. 把 LinearLayout 添加到 RelativeLayoutrelativeLayout.addView(linearLayout);// 6. 设置 Activity 内容为 RelativeLayoutsetContentView(relativeLayout);}
}

方法3:可以在 XML 定义布局基础结构,然后在 Java 中动态修改或添加控件

1.2 RelativeLayout(相对布局)

✅ 核心特点:

子控件通过​​相对位置​​来排列(比如相对于父布局,或相对于其他控件)

支持诸如 layout_alignParentToplayout_belowlayout_toRightOf等属性

​灵活性强,但复杂布局容易难以维护​

1.3 FrameLayout(帧布局)

✅ 核心特点:

​所有子控件默认都堆叠在左上角(0,0)位置​

后添加的控件会覆盖在先添加的控件之上(常用于叠加显示),

  • 可以通过 android:layout_gravityFrameLayout.LayoutParams.gravity 控制子控件在父容器中的位置

  • 常见值:centertop|leftbottom|right

通常用来显示​​单个全屏控件​

🎯 适用场景:

显示单一内容,比如全屏的图片、视频播放器

实现​​层叠效果​​(比如浮动按钮盖在内容上方)

用作 ​​Fragment 的容器​

举个例子,下面这个就是framelayout从zuos左上角开始叠加的布局

1.4 ConstraintLaout(约束布局)

ConstraintLayout 功能抢到,可以替代 LinearLayout、RelativeLayout、FrameLayout 等组合布局,主要特点如下:

✅ 核心特点:

通过​​控件之间的约束关系(Constraints)​​来定位,而不是嵌套

支持百分比定位、居中、偏移、链条(Chains)、屏障(Barrier)、Guideline 等高级功能

​官方推荐用于替代多层嵌套的 LinearLayout / RelativeLayout​

支持在 Android Studio 的 ​​布局编辑器中可视化拖拽约束​

🎯 适用场景:

构建​​复杂且响应式的 UI​

需要精确控制控件位置与对齐

希望减少布局嵌套层级,提升渲染性能

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"xmlns:app="http://schemas.android.com/apk/res-auto"android:background="@android:color/white"><!-- 居中显示的 LinearLayout --><LinearLayoutandroid:id="@+id/center_linear"android:layout_width="wrap_content"android:layout_height="wrap_content"android:orientation="vertical"android:padding="16dp"app:layout_constraintStart_toStartOf="parent"app:layout_constraintEnd_toEndOf="parent"app:layout_constraintTop_toTopOf="parent"app:layout_constraintBottom_toBottomOf="parent"android:background="@android:color/holo_blue_light"tools:ignore="MissingConstraints"><!-- LinearLayout 内的子控件 --><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="我是居中的"android:textSize="18sp"android:textColor="@android:color/white" /><Buttonandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="点我" /></LinearLayout><LinearLayoutandroid:id="@+id/center_linear1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:orientation="vertical"android:padding="16dp"app:layout_constraintStart_toStartOf="@id/center_linear"app:layout_constraintTop_toBottomOf="@id/center_linear"android:background="@android:color/holo_green_light"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="居中的下面"android:textSize="18sp"android:textColor="@android:color/white" /><Buttonandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="点我" /></LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

✅ 提示:

使用 app:layout_constraintXXX来定义控件间的约束关系

ConstraintLayout强大之处在于不用嵌套也能实现复杂布局

tip:

如果在 XML 和 Java 代码中都对同一个控件设置了相同属性,​​后设置的会覆盖前者​

所有的布局与属性设置,都是在 setContentView()之后才会真正生效嵌套太深会影响性能与渲染速度,

尽量使用 ConstraintLayout减少布局层级

http://www.xdnf.cn/news/19600.html

相关文章:

  • 超越关键词:RAG系统如何破解用户查询的“模糊密码”
  • Redis 中的 Bitmap 与 Bitfield 及 Java 操作实践
  • 【LeetCode】18、四数之和
  • LeetCode 每日一题 2025/8/25-2025/8/31
  • SciPy
  • DrissionPage 实战:动态 IP 代理与百度翻译 API 数据抓取
  • 硬件开发_基于物联网的工厂环境监测系统
  • Qt Demo之 deepseek 帮我写的关于双目标定的小界面
  • redis----zset详解
  • Langflow Memory 技术深度分析
  • Langflow RAG 技术深度分析
  • 人工智能学习:机器学习相关面试题(二)
  • MySQL-视图与用户管理
  • Langchain指南-关键特性:如何流式传输可运行项
  • 如何解决pip安装报错ModuleNotFoundError: No module named ‘SQLModel’问题
  • 案例——从零开始搭建 ASP.NET Core 健康检查实例
  • 齿轮加工刀具材料漫谈:从高速钢到陶瓷的 “切削艺术”
  • 传统数据库out啦!KINGBASE ES V9R1C10 开启国产数据库“修仙”新纪元!
  • Day19_【机器学习—线性回归 (2)】
  • 正则表达式 Python re 库完整教程
  • 生存分析入门教程
  • 馈电油耗讲解
  • AssemblyLoadContext`的插件化架构
  • Qt libcurl的下载、配置及简单测试 (windows环境)
  • springboot项目启动时打印maven打包时间
  • [Mysql数据库] 知识点总结8
  • 计算机网络:(十六)TCP 的运输连接管理
  • Ring Buffer解析
  • 仓颉语言Web框架中的路由分组
  • linux系统学习(6.软件包管理)