我在父LinearLayout中包含均匀间隔的LinearLayouts,我可以使用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>