LinearLayout AbsoluteLayout

LinearLayout
   orientation="horizontal" :水平排列;
    orientation=" vertical" :垂直排列
    layout_width="fill_parent" ,自动填充至屏幕宽度,layout_height 同理
    layout_width="wrap_content" ,自动填充为控件大小,layout_height 同理

AbsoluteLayout
    是一个按照绝对坐标定义的布局,由于使用绝对坐标去定位控件,因此要实现自适应界面时,应尽少使用 AbsoluteLayout 。
     AbsoluteLayout 里面的控件都以layout_x 、layout_y 来定义其位置:

你可能感兴趣的:(LinearLayout AbsoluteLayout)