Android布局管理器-Linear/Brid/RelativeLayouts練習(xí)實(shí)例

計(jì)算器界面


1-linearlaout方法

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" > 

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="75dp"
    android:orientation="horizontal" >

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:text="1" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:text="2" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:text="3" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:text="/" />
</LinearLayout>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="75dp"
    android:orientation="horizontal" >

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:text="4" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:text="5" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:text="6" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:text="*" />
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="75dp"
    android:orientation="horizontal" >

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:text="7" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:text="8" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:text="9" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:text="-" />
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="150dp"
    android:orientation="horizontal" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="horizontal" >

            <Button
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:text="0" />

            <Button
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="2"
                android:text="." />
        </LinearLayout>

        <Button
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:text="=" />
    </LinearLayout>

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="3"
        android:text="+" />
</LinearLayout>
</LinearLayout>

關(guān)鍵部分

2-GridLayout方法

<?xml version="1.0" encoding="utf-8"?>
 <GridLayout      android:id="@+id/GridLayout1"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:columnCount="4"
 android:orientation="horizontal"
 android:rowCount="6" >

<Button
    android:text="1" />
<Button
    android:text="2" />
<Button android:text="3" />
<Button android:text="/" />
<Button android:text="4" />
<Button android:text="5" />
<Button android:text="6" />
<Button android:text="*" />
<Button android:text="7" />
<Button android:text="8" />
<Button android:text="9" />
<Button android:text="-" />
<Button
    android:layout_gravity="fill"
    android:layout_columnSpan="2"
    android:text="0" />
<Button android:text="." />
<Button android:text="+" 
    android:layout_rowSpan="2"
    android:layout_gravity="fill"/>
<Button android:text="=" 
    android:layout_gravity="fill"
    android:layout_columnSpan="3"/>
</GridLayout>

RelativeLayout實(shí)例

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    
xmlns:tools="http://schemas.android.com/tools"    
android:id="@+id/RelativeLayout1"    
android:layout_width="match_parent"    
android:layout_height="match_parent" >    


    
<Button  
    android:id="@+id/mid_bt"     
    android:layout_width="80dp"    
    android:layout_height="80dp"    
    android:layout_centerInParent="true"
    android:text="middle"    />    
    

<Button 
    android:layout_width="80dp"    
    android:layout_height="80dp"    
    android:layout_toLeftOf="@id/mid_bt"    
    android:layout_centerVertical="true"
    android:text="middle_left"    />    
    

<Button    
    android:layout_width="80dp"    
    android:layout_height="80dp"    
    android:layout_toRightOf="@id/mid_bt"    
    android:layout_centerVertical="true"
    android:text="middle_righr"    />    
    

<Button  
    android:layout_width="80dp"    
    android:layout_height="80dp"    
    android:layout_above="@id/mid_bt"    
    android:layout_centerHorizontal="true"
    android:text="middle_top"    />    
    

<Button     
    android:layout_width="80dp"    
    android:layout_height="80dp"    
    android:layout_below="@id/mid_bt"    
    android:layout_centerHorizontal="true"
    android:text="middle_buttom"    />    

</RelativeLayout>’
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末叁温,一起剝皮案震驚了整個(gè)濱河市欣鳖,隨后出現(xiàn)的幾起案子禀酱,更是在濱河造成了極大的恐慌前标,老刑警劉巖孵稽,帶你破解...
    沈念sama閱讀 210,978評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異躲查,居然都是意外死亡弟蚀,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門灸撰,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)谒府,“玉大人,你說(shuō)我怎么就攤上這事浮毯⊥暌撸” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,623評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵债蓝,是天一觀的道長(zhǎng)壳鹤。 經(jīng)常有香客問(wèn)我,道長(zhǎng)饰迹,這世上最難降的妖魔是什么芳誓? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,324評(píng)論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮啊鸭,結(jié)果婚禮上锹淌,老公的妹妹穿的比我還像新娘。我一直安慰自己赠制,他們只是感情好赂摆,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,390評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著,像睡著了一般烟号。 火紅的嫁衣襯著肌膚如雪绊谭。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,741評(píng)論 1 289
  • 那天汪拥,我揣著相機(jī)與錄音达传,去河邊找鬼。 笑死迫筑,一個(gè)胖子當(dāng)著我的面吹牛宪赶,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播脯燃,決...
    沈念sama閱讀 38,892評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼逊朽,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了曲伊?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,655評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤追他,失蹤者是張志新(化名)和其女友劉穎坟募,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體邑狸,經(jīng)...
    沈念sama閱讀 44,104評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡懈糯,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了单雾。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片赚哗。...
    茶點(diǎn)故事閱讀 38,569評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖硅堆,靈堂內(nèi)的尸體忽然破棺而出屿储,到底是詐尸還是另有隱情,我是刑警寧澤渐逃,帶...
    沈念sama閱讀 34,254評(píng)論 4 328
  • 正文 年R本政府宣布够掠,位于F島的核電站,受9級(jí)特大地震影響茄菊,放射性物質(zhì)發(fā)生泄漏疯潭。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,834評(píng)論 3 312
  • 文/蒙蒙 一面殖、第九天 我趴在偏房一處隱蔽的房頂上張望竖哩。 院中可真熱鬧,春花似錦脊僚、人聲如沸相叁。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,725評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)钝荡。三九已至街立,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間埠通,已是汗流浹背赎离。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,950評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留端辱,地道東北人梁剔。 一個(gè)月前我還...
    沈念sama閱讀 46,260評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像舞蔽,于是被迫代替她去往敵國(guó)和親荣病。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,446評(píng)論 2 348

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