<?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">
<!-- 由于最外层不是 Layout,则这里为根布局 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffc">
<!-- 再添加一个内部视图布局 -->
<LinearLayout
android:layout_marginTop="200dp"
android:layout_marginLeft="70dp"
android:layout_width="300dp"
android:layout_height="300dp"
android:padding="40dp"
android:background="#fcf">
<!-- 添加视图组件 -->
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#cff"/>
</LinearLayout>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>