<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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">
<!-- 网格布局 -->
<GridLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:columnCount="4"
android:rowCount="6"
tools:ignore="MissingConstraints">
<!-- 单个组件 -->
<View
android:layout_width="80dp"
android:layout_height="80dp"
android:background="#ffc"/>
<View
android:layout_width="80dp"
android:layout_height="80dp"
android:background="#fcf"/>
<View
android:layout_width="80dp"
android:layout_height="80dp"
android:background="#cff"/>
<View
android:layout_width="80dp"
android:layout_height="80dp"
android:background="#ccc"/>
<!-- layout_rowSpan -->
<View
android:layout_rowSpan="2"
android:layout_width="80dp"
android:layout_height="160dp"
android:background="#ddd"/>
<View
android:layout_rowSpan="2"
android:layout_width="80dp"
android:layout_height="160dp"
android:background="#cdc"/>
<!-- layout_columnSpan -->
<View
android:layout_columnSpan="2"
android:layout_width="160dp"
android:layout_height="80dp"
android:background="#f88"/>
<View
android:layout_columnSpan="2"
android:layout_width="160dp"
android:layout_height="80dp"
android:background="#f11"/>
</GridLayout>
</androidx.constraintlayout.widget.ConstraintLayout>