2015年4月13日 星期一

【Android】讓兩個按鈕各占螢幕一半(多個均分)





在 LinearLayout 中實現兩個按鈕各占螢幕一半的寬度。

<LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="35dp"
        android:orientation="horizontal"
        android:weightSum="2" >

        <Button
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:background="#555555"/>
        <Button
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:background="#999999"/>
</LinearLayout>

多個就改變【android:weightSum="2"】及【Button】數
如果移除 【android:weightSum="2"】, 只要增加Button】也可以

沒有留言:

張貼留言