在我的xml中,
<LinearLayout
android:id="@+id/row2B"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignBottom="@+id/row2A"
android:layout_alignParentRight="true"
android:layout_alignTop="@+id/row2A"
android:orientation="vertical"
android:padding="@dimen/dp10"
android:paddingBottom="2dp"
android:splitMotionEvents="false"
android:weightSum="6" >
<ImageButton
android:id="@+id/btn_amend_all"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="@drawable/transparent_btn"
android:scaleType="center"
android:splitMotionEvents="false" />
<ImageButton
android:id="@+id/btn_amend_list1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/dp2"
android:layout_weight="1"
android:background="@drawable/white_btn_border_nil"
android:scaleType="center"
android:splitMotionEvents="false"
android:src="@drawable/btn_edit_selector" />
<ImageButton
android:id="@+id/btn_amend_list2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/dp2"
android:layout_weight="1"
android:background="@drawable/white_btn_border_nil"
android:scaleType="center"
android:splitMotionEvents="false"
android:src="@drawable/btn_edit_selector" />
<ImageButton
android:id="@+id/btn_amend_list3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/dp2"
android:layout_weight="1"
android:background="@drawable/white_btn_border_nil"
android:scaleType="center"
android:splitMotionEvents="false"
android:src="@drawable/btn_edit_selector" />
<ImageButton
android:id="@+id/btn_amend_list4"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/dp2"
android:layout_weight="1"
android:background="@drawable/white_btn_border_nil"
android:scaleType="center"
android:splitMotionEvents="false"
android:src="@drawable/btn_edit_selector" />
<ImageButton
android:id="@+id/btn_amend_list5"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/dp2"
android:layout_weight="1"
android:background="@drawable/white_btn_border_nil"
android:scaleType="center"
android:splitMotionEvents="false"
android:src="@drawable/btn_edit_selector" />
</LinearLayout>
左边的
是row2A中的RadioGroup,代码是row2B,alignTop和row2A的底部。
参考What is android:weightSum in android, and how does it work?,我希望6个按钮在高度上均匀分布,但为什么以上不能达到目的呢?
提前致谢!
答案 0 :(得分:1)
使用
所有android:layout_height="0dp"
ImageButton
。