1. 程式人生 > >android studio佈局種類

android studio佈局種類

四大布局種類:LinearLayout-線性佈局、RelativeLayout-相對佈局、FrameLayout-幀佈局、TableLayout-表格佈局

(1)LinearLayout

屬性:

android : orientation="horizontal"(預設,水平佈局)、"vertical"(垂直佈局)

background="顏色"

layout_width/height="match_parent"-填充父件、"wrap_content"-包裹子件

vertical佈局對齊方式(left,center,right)

horizontal對齊方式(top,center,bottom)

layout_weight-比例等分(vertical有效)

注意,多個流式分佈要wrap在相對分佈中,不然重疊

(2)RelativeLayout-相對分佈