Android中常用的五種佈局方式:AbsoluteLayout
阿新 • • 發佈:2019-02-11
絕對佈局中將所有的子元素通過設定android:layout_x 和 android:layout_y屬性,將子元素的座標位置固定下來,即座標(android:layout_x, android:layout_y) ,layout_x用來表示橫座標,layout_y用來表示縱座標。 螢幕左上角為座標(0,0),橫向往右為正方,縱向往下為正方。實際應用中,這種佈局用的比較少,因為Android終端一般機型比較多,各自的螢幕大小。解析度等可能都不一樣,如果用絕對佈局,可能導致在有的終端上顯示不全等.
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.xspacing.absolutelayout.MainActivity" >
<TextView
android:layout_x="100dp"
android:layout_y="50dp"
android:layout_width ="wrap_content"
android:layout_height="wrap_content"
android:text="AbsoluteLayout" />
</AbsoluteLayout>