您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關Android中怎么利用AbsoluteLayout實現絕對布局,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
具體內容如下
1>AbsoluteLayout(絕對布局)
又可以叫做坐標布局,可以直接指定子元素的絕對位置(xy)
2>由于手機屏幕尺寸差別比較大
使用絕對定位的適應性會比較差,在屏幕的適配上有缺陷
3>AbsoluteLayout子類控件的屬性
android:layout_x=”35dip” 控制當前子類控件的x位置
android:layout_y=”40dip” 控制當前子類控件的y位置
開發中不推薦使用
<?xml version="1.0" encoding="utf-8"?> <AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_x="236dp" android:layout_y="94dp" android:text="Button" /> <Button android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_x="143dp" android:layout_y="166dp" android:text="Button" /> <Button android:id="@+id/button3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_x="33dp" android:layout_y="263dp" android:text="Button" /> </AbsoluteLayout>
上述就是小編為大家分享的Android中怎么利用AbsoluteLayout實現絕對布局了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。