2

我在父 LinearLayout 中均匀分布包含 LinearLayout,我可以使用 weightSum 和 layout_weight 参数轻松完成。我得到了一个很好的结果,接受我希望间隔的元素是方形的。如何强制高度为均匀间隔后的宽度?

请注意,我已将 4 个包含的元素的权重设为 10,而垫片的权重为 1(总重量总和为 45)。

非常感谢!这一直困扰着我一段时间。

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rlRaces"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_horizontal"
android:orientation="horizontal"
android:weightSum="45" >

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="fill_parent"
    android:layout_weight="1" >
</LinearLayout>

<include
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="10"
    layout="@layout/races_badge" />

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_weight="1" >

</LinearLayout>

<include
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="10"
    layout="@layout/races_badge" />

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_weight="1" >

</LinearLayout>

<include
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="10"
    layout="@layout/races_badge" />

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_weight="1" >

</LinearLayout>

<include
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="10"
    layout="@layout/races_badge" />

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_weight="1" >

</LinearLayout>

4

0 回答 0