android 坐标布局 AbsoluteLayout

坐标布局:所有控件的坐标都是指定的
<AbsoluteLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_x="10px"
            android:layout_y="20px"
            android:text="AbsoluteLayout" >
        </TextView>
</AbsoluteLayout>

你可能感兴趣的:(android,layout)