您的位置:首页 > 移动开发 > Android开发

Android 水平平均布局

2015-06-07 10:01 337 查看
需要在界面中,对指定的控件水平平均布局时,可采用如下方式:

<?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="45dp"
android:orientation="horizontal"
android:gravity="bottom" >

<ImageButton
android:id="@+id/id_title_left_btn"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@drawable/ic_launcher"
android:layout_weight="1" />

<ImageButton
android:id="@+id/id_title_left_btn1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@drawable/ic_launcher"
android:layout_weight="1"  />

<ImageButton
android:id="@+id/id_title_left_btn2"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@drawable/ic_launcher"
android:layout_weight="1" />

<ImageButton
android:id="@+id/id_title_left_btn3"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@drawable/ic_launcher"
android:layout_weight="1"  />

</LinearLayout>


其中,最重要的属性是 layout_weight="1"时,剩余空间平均分配,=0时,按实际大小分配。
android:layout_weight
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: