页面布局
1.其他一些控件
WebView
ListView
GridView
ScrollView
SufaceView
2.五大布局
LinearLayout 线性布局
orientation水平或者竖直排列
weightSum layout_weight布局方式
RelativeLayout 相对布局
layout_alignParentBottom
layout_alignParentRight
layout_alignTop=”@+id/id值”
layout_alignRight=”@+id/id值”
layout_above=”@+id/id值”
layout_toLeftof=”@+id/id值”
layout_below=”@+id/id值”
父控件的某个位置;兄弟控件的某个位置;和兄弟控件按某种方式对齐
layout_margin=”100dp” 外边距
paddingLeft=”100dp”内边距
FrameLayout 帧布局
叠加在上面
AbsoluteLayout 绝对布局
使用绝对坐标
TableLayout 表格布局
3.布局方案、性能问题、优化技巧
减少层次,层次过多会导致页面加载变慢
删除无用布局
使用合适的布局,常常会使用相对布局
layout_weight少用
Android lint工具
HierarchyViewer工具
4.一些有用的属性
<include>
<merge>
<ViewStub>