废话不多说,直接上代码
<?xml version="1.0" encoding="utf-8"?>
<!--
LinearLayout为 线性布局
android:orientation="vertical" 表示按照竖线排列
android:orientation="horizontal"表示按照横线排列
android:layout_width="fill_parent"宽度为父窗体的满窗
android:layout_width="wrap_content"宽度为自适应大小,既内容所占长度宽度
android:background="#fff"指定背景颜色
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#fff"
>
<!-- 定义文字说明 -->
<!--在布局之中是可以进行嵌套的,相当于iframe进行嵌套-->
<!--android:layout_marginTop="30dp"表示距离顶部30dp-->