Android-AbsoluteLayout(绝对布局)

AbsoluteLayout(绝对布局),又可以叫做坐标布局,可以直接指定子元素的绝对位置

四大控制属性
控制大小: android:layout_width:组件宽度 android:layout_height:组件高度
控制位置: android:layout_x:设置组件的X坐标 android:layout_y:设置组件的Y坐标

代码如下:

android:id="@+id/ab1"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:background="#fff" >












你可能感兴趣的:(Android)