关于布局绝大部分使用线性布局和相对布局
LinearLayout线性布局
android:id 标识,找到空间
"@+id/"
android:layout_width 宽度
android:layout_height 高度
match_parent 匹配副空间
dp 单位
android:background 背景
android:layout_margin 外边距
android:layout_padding 内边距
android:orientation 布局方向(垂直vertical,水平horizontal)
RelativeLayout相对布局
android:layout_toLeftOf 在...左
android:layout_toRightOf 在...右
android:layout_alignBottom
android:layout_alignParentBottom 在底部
android:layout_below 在...下