分类: Java
2012-02-09 21:37:51
绝对定位布局管理AbsoluteLayout(android2.3之后不再提供使用)
将屏幕用xy坐标划分
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="西安理工大学"
android:layout_x="80px"
android:layout_y="10px"/>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/fish"
android:layout_x="160px"
android:layout_y="100px"/>