亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android的四個基本布局

發布時間:2020-08-11 12:23:13 來源:ITPUB博客 閱讀:206 作者:山有木xi 欄目:移動開發

在Android中有四種基本布局,可以放置很多控件的容器,按照一定的個一律調整控件的位置,從而編寫出精美的界面

1)線性布局:LinearLayout

讓我們來看一段代碼

<LinearLayout xmlns:android="http://schemas,android.com/apk/res/android">android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
//android:layout_gravity="top"
android:text="Button1"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
//android:layout_gravity="center_vertical"
android:text="Button2"/>
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
//android:layout_gravity="bottom"
android:text="Button3"/>
<LinearLayout/>

其中 orientation:vertical就是線性布局中的垂直布局

將其改為 orientation:horizantal就是線性布局中的水平布局

注釋符后的android:l ayout_gravity似乎看起來和android:gravity很像,實際上 android:gravity是用來控制文字的, 而 android:l ayout_gravity是用來控制控件的, 需要注意的是 android:l ayout_gravity只能在垂直布局上用到,因為水平布局中的長度是不固定的,每添加一個就加長 還有一個也很重要的屬性:android:layout_weight,這是用來比例控制控件大小 2)相對布局:RelativeLayout

<RelativeLayout xmlns:android="http://schemas,android.com/apk/res/android">
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="Button1"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="Button2"/>
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="Button3"/>
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:text="Button4"/>
<Button
android:id="@+id/button5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentBottom="true"
android:text="Button5"/>
<RelativeLayout/>

這里用到的是layout_alignParentTop,layout_alignParentBottm,layout_alignParentLeft,layout_alignParentRight和layout_centerInParent,他們的意思顯而易見

除此以外還有,layout_above,layout_below,layout_toLeftof,layout_toRightof

而layout_alignLeft,layout_alignRight,layout_alignTop,layout_alignBottom,則是利用邊緣對齊的方式控制控件 3)幀布局:FrameLayout 它相比于其他兩個布局就簡單多了,它沒有方便的定位方式,所有的控件都會顯示在左上角 4)百分比布局:PercentFrameLayout以及PercentRelativelayout 其中有:app:layout_heightPercent, app:layout_widthPercent 而在實際編程中,會發現一個問題,就是如果頁面需要大量的重復控件,那么難道我們要一個個,一遍遍寫嗎? Android為我們提供了,引入布局的操作:<include layout="@layout/title"/>

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

高要市| 二连浩特市| 砀山县| 宽城| 油尖旺区| 呼伦贝尔市| 逊克县| 华阴市| 道孚县| 江山市| 九龙坡区| 阿拉善左旗| 丘北县| 漯河市| 斗六市| 武鸣县| 宾川县| 彩票| 黄浦区| 临夏县| 沧州市| 长岭县| 申扎县| 巫山县| 奉节县| 钟祥市| 即墨市| 菏泽市| 莒南县| 萝北县| 寿阳县| 庆城县| 龙泉市| 泾源县| 桦南县| 吴忠市| 内黄县| 乃东县| 鞍山市| 舞阳县| 汶川县|