在设置android:layout_weight="1"的时候分两种情况,比如android:layout_width="wrap_content" 和android:layout_width="0"
前者其实不是绝对的1比1比重了,会根据实际需要进行伸缩,后者则是绝对的比例
需要在界面中,对指定的控件水平平均布局时,可采用如下方式:
[html] view plain copy <?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时,按实际大小分配。
[html] view plain copy android:layout_weight 顶 0