这是一个很常见的需求,比如有三个图片按钮,需要在底部三个平均,比如下个例子:
以下是布局文件
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="10dp"
>
<ImageButton
android:id="@+id/button_start"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/button_start"
android:background="@android:color/transparent"
/>
<ImageButton
android:id="@+id/imageView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:layout_weight="1"
android:src="@drawable/button_heat" />
<ImageButton
android:id="@+id/imageView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/button_close"
android:background="@android:color/transparent" />
</LinearLayout>
相应解释:
原文地址:http://blog.csdn.net/work4blue/article/details/41169249