1.Linnerlayout 线性布局
*android:orinentation="vertical/horizontal"
2.Ralativelayout相对布局
alignParentBottom = "true":控件的底部和父控件的底部对齐
layout_alignparentleft= "true":左边对齐
layout_alignparentRight= "true":右边对齐
layout_alignparentTop= "true":顶部对齐
layout_centerHorizontal= "true":控件将被至于水平方向的中央
layout_centerParent= "true":该控件被至于父控件水平和垂直中央
layout_centerVertical= "true":垂直方向中央
3.Tablelayout布局
*必须和TableRow搭配使用
4.Framelayout帧布局
*每添加一个子控件被放在左上角,并覆盖在前一子控件的上面
5.Gridlayout网格布局
*API=14以上才行
6.Absolutelayout 绝对布局(已废弃)