Android UI的四種基本布局

布局是一種可用于放置很多控件的容器橄碾,它可以按照一定的規(guī)律調(diào)整內(nèi)部控件的位置,從而編寫出精美的界面颠锉。當(dāng)然法牲,布局的內(nèi)部除了放置控件外,也可以放置布局琼掠,通過多層布局的嵌套拒垃,我們就能夠完成一些

比較復(fù)雜的界面實(shí)現(xiàn),下圖很好地展示了它們之間的關(guān)系瓷蛙。


1 LinearLayout

LinearLayout 又稱作線性布局恶复,是一種非常常用的布局。正如它名字所描述的一樣速挑,這個布局會將它所包含的控件在線性方向上依次排列。

我們通過 android:orientation 屬性指定了排列方向是 vertical副硅,如果指定的是 horizontal姥宝,控件就會在水平方向上排列了。

activity_main.xml 中的代碼恐疲,如下所示:

http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical">

android:id="@+id/button1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Button 1" />

android:id="@+id/button2"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Button 2" />

android:id="@+id/button3"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Button 3" />

我 們 在 LinearLayout 中 添 加 了 三 個 Button 腊满, 每 個 Button 的 長 和 寬 都 是wrap_content套么,并指定了排列方向是vertical。現(xiàn)在運(yùn)行一下程序碳蛋,效果如下圖所示胚泌。

修改一下 LinearLayout 的排列方向,如下所示:

http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="horizontal">

??

將 android:orientation 屬性的值改成了 horizontal肃弟,這就意味著要讓 LinearLayout中的控件在水平方向上依次排列玷室,當(dāng)然如果不指定 android:orientation 屬性的值,默認(rèn)的排列方向就是 horizontal笤受。重新運(yùn)行一下程序穷缤,效果如下圖所示。

這里需要注意箩兽,如果 LinearLayout 的排列方向是 horizontal津肛,內(nèi)部的控件就絕對不能將寬度指定為 match_parent,因為這樣的話單獨(dú)一個控件就會將整個水平方向占滿汗贫,其他的控件就沒有可放置的位置了身坐。同樣的道理,如果 LinearLayout 的排列方向是 vertical落包,內(nèi)部的控件就不能將高度指定為 match_parent部蛇。

幾個關(guān)鍵屬性

android:gravity是用于指定文字在控件中的對齊方式

android:layout_gravity是用于指定控件在布局中的對齊方式

android:layout_weight 這個屬性允許我們使用比例的方式來指定控件的大小,它在手機(jī)屏幕的適配性方面可以起到非常重要的作用妥色。

我們還可以通過指定部分控件的layout_weight值搪花,來實(shí)現(xiàn)更好的效果。修改activity_main.xml 中的代碼嘹害,如下所示:

http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="horizontal" >

android:id="@+id/input_message"

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_weight="1"

android:hint="Type something"

/>

android:id="@+id/send"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Send"

/>

這里我們僅指定了 EditText 的 android:layout_weight 屬性撮竿,并將 Button 的寬度改回 wrap_content。這表示 Button 的寬度仍然按照 wrap_content 來計算笔呀,而 EditText則會占滿屏幕所有的剩余空間幢踏。使用這種方式編寫的界面,不僅在各種屏幕的適配方面會非常好许师,而且看起來也更加舒服房蝉,重新運(yùn)行程序,效果如圖所示微渠。

2RelativeLayout 又稱作相對布局

RelativeLayout 又稱作相對布局搭幻,也是一種非常常用的布局。和 LinearLayout 的排列規(guī)則不同逞盆,RelativeLayout 顯得更加隨意一些檀蹋,它可以通過相對定位的方式讓控件出現(xiàn)在布局的任何位置。

android:layout_alignParentLeft

android:layout_alignParentTop

android:layout_alignParentRight

android:layout_alignParentBottom

android:layout_centerInParent

android:layout_alignLeft表示讓一個控件的左邊緣和另一個控件的左邊緣對齊

android:layout_alignRight表示讓一個控件的右邊緣和另一個控件的右邊緣對齊

android:layout_alignTop

android:layout_ alignBottom

activity_main.xml 中的代碼云芦,如下所示:

http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"

android:layout_height="match_parent" >

android:id="@+id/button1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignParentLeft="true"

android:layout_alignParentTop="true"

android:text="Button 1" />

android:id="@+id/button2"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignParentRight="true"

android:layout_alignParentTop="true"

android:text="Button 2" />

android:id="@+id/button3"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_centerInParent="true"

android:text="Button 3" />

android:id="@+id/button4"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignParentBottom="true"

android:layout_alignParentLeft="true"

android:text="Button 4" />

android:id="@+id/button5"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignParentBottom="true"

android:layout_alignParentRight="true"

android:text="Button 5" />

我們讓 Button 1和父布局的左上角對齊俯逾,Button 2 和父布局的右上角對齊贸桶,Button 3 居中顯示,Button 4

和父布局的左下角對 齊桌肴,Button5和父布局的右下角對齊 皇筛。

上面例子中的每個控件都是相對于父布局進(jìn)行定位的,那控件可不可以相對于控件進(jìn)行定位呢坠七?當(dāng)然是可以的水醋,修改 activity_main.xml 中的代碼,如下所示:

http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"

android:layout_height="match_parent" >

android:id="@+id/button3"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_centerInParent="true"

android:text="Button 3" />

android:id="@+id/button1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_above="@id/button3"

android:layout_toLeftOf="@id/button3"

android:text="Button 1" />

android:id="@+id/button2"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_above="@id/button3"

android:layout_toRightOf="@id/button3"

android:text="Button 2" />

android:id="@+id/button4"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_below="@id/button3"

android:layout_toLeftOf="@id/button3"

android:text="Button 4" />

android:id="@+id/button5"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_below="@id/button3"

android:layout_toRightOf="@id/button3"

android:text="Button 5" />

次的代碼稍微復(fù)雜一點(diǎn)灼捂,不過仍然是有規(guī)律可循的离例。android:layout_above 屬性可以讓一個控件位于另一個控件的上方,需要為這個屬性指定相對控件 id 的引用悉稠,這里我們填入了@id/button3宫蛆,表示讓該控件位于 Button 3 的上方。其他的屬性也都是相似的的猛,android:layout_below 表 示 讓一個控件位于另一個控件的下方 耀盗,android:layout_toLeftOf 表示讓一個控件位于另一個控件的左側(cè),android:layout_toRightOf 表示讓一個控件位于另一個控件的右側(cè)卦尊。注意叛拷,當(dāng)一個控件去引用另一個控件的 id 時,該控件一定要定義在引用控件的后面岂却,不然會出現(xiàn)找不到 id 的情況忿薇。

3 FrameLayout

FrameLayout 相比于前面兩種布局就簡單太多了,因此它的應(yīng)用場景也少了很多躏哩。這

種布局沒有任何的定位方式署浩,所有的控件都會擺放在布局的左上角。

4TableLayout

TableLayout 允許我們使用表格的方式來排列控件扫尺,這種布局也不是很常用筋栋,你只需要了解一下它的基本用法就可以了。既然是表格正驻,那就一定會有行和列弊攘,在設(shè)計表格時我們盡量應(yīng)該讓每一行都擁有相同的列數(shù),這樣的表格也是最簡單的姑曙。不過有時候事情并非總會順從我們的心意襟交,當(dāng)表格的某行一定要有不相等的列數(shù)時,就需要通過合并單元格的方式來應(yīng)對伤靠。

5AbsoluteLayout

Android 中其實(shí)還有一個 AbsoluteLayout婿着,不過這個布局官方已經(jīng)不推薦使用了

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子竟宋,更是在濱河造成了極大的恐慌,老刑警劉巖形纺,帶你破解...
    沈念sama閱讀 212,454評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件丘侠,死亡現(xiàn)場離奇詭異,居然都是意外死亡逐样,警方通過查閱死者的電腦和手機(jī)蜗字,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,553評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來脂新,“玉大人挪捕,你說我怎么就攤上這事≌悖” “怎么了级零?”我有些...
    開封第一講書人閱讀 157,921評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長滞乙。 經(jīng)常有香客問我奏纪,道長,這世上最難降的妖魔是什么斩启? 我笑而不...
    開封第一講書人閱讀 56,648評論 1 284
  • 正文 為了忘掉前任序调,我火速辦了婚禮,結(jié)果婚禮上兔簇,老公的妹妹穿的比我還像新娘发绢。我一直安慰自己,他們只是感情好垄琐,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,770評論 6 386
  • 文/花漫 我一把揭開白布边酒。 她就那樣靜靜地躺著,像睡著了一般此虑。 火紅的嫁衣襯著肌膚如雪甚纲。 梳的紋絲不亂的頭發(fā)上痰腮,一...
    開封第一講書人閱讀 49,950評論 1 291
  • 那天凿宾,我揣著相機(jī)與錄音吵瞻,去河邊找鬼瑰煎。 笑死藐翎,一個胖子當(dāng)著我的面吹牛货裹,可吹牛的內(nèi)容都是我干的腰吟。 我是一名探鬼主播趟大,決...
    沈念sama閱讀 39,090評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼恩伺,長吁一口氣:“原來是場噩夢啊……” “哼赴背!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,817評論 0 268
  • 序言:老撾萬榮一對情侶失蹤凰荚,失蹤者是張志新(化名)和其女友劉穎燃观,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體便瑟,經(jīng)...
    沈念sama閱讀 44,275評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡缆毁,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,592評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了到涂。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片脊框。...
    茶點(diǎn)故事閱讀 38,724評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖践啄,靈堂內(nèi)的尸體忽然破棺而出浇雹,到底是詐尸還是另有隱情,我是刑警寧澤屿讽,帶...
    沈念sama閱讀 34,409評論 4 333
  • 正文 年R本政府宣布昭灵,位于F島的核電站,受9級特大地震影響聂儒,放射性物質(zhì)發(fā)生泄漏虎锚。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,052評論 3 316
  • 文/蒙蒙 一衩婚、第九天 我趴在偏房一處隱蔽的房頂上張望窜护。 院中可真熱鬧,春花似錦非春、人聲如沸柱徙。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,815評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽护侮。三九已至,卻和暖如春储耐,著一層夾襖步出監(jiān)牢的瞬間羊初,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,043評論 1 266
  • 我被黑心中介騙來泰國打工什湘, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留长赞,地道東北人。 一個月前我還...
    沈念sama閱讀 46,503評論 2 361
  • 正文 我出身青樓闽撤,卻偏偏與公主長得像得哆,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子哟旗,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,627評論 2 350

推薦閱讀更多精彩內(nèi)容