View控件下分:TextView、ImageView、ViewGroup TextView下分:EditText、Button ViewGroup下分:LinearLayout、RelativeLayout、FrameLayout、TableLayout、AbsoluteLayout LinearLayout:线下布局,所有控件依次排列 RelativeLayout:相对布局,控件根据相对位置排列 FrameLayout:所有控件都摆放在左上角 TableLayout:表格布局,控件需要根据行和列来摆放,可以通过android:layout_span属性合并单元格 AbsoluteLayou:已不建议使用
|