android5大布局

程式碼修行者發表於2015-07-17

1、Linear線性佈局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:gravity="bottom|center_horizontal"
    >

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="New Button"
        android:id="@+id/button"
        android:layout_weight="2"/>

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

注意:
當子控制元件的layout_height=”match_parent”時 layout_weight成反比

這裡寫圖片描述

2、Relative相對佈局

相關文章