我有一个相对布局,它是 4 个按钮。现在我正在为宽度做fill_parent。对于第一个和第四个按钮,我可以将父级左/右对齐。但是如何正确对齐按钮 2,3,以便所有按钮之间有适当的间距。
我尝试以编程方式进行操作,但我无法移动或设置按钮的确切位置,因为有很多基于像素宽度和 dpi 的逻辑。
有什么简单的出路吗?
我有一个相对布局,它是 4 个按钮。现在我正在为宽度做fill_parent。对于第一个和第四个按钮,我可以将父级左/右对齐。但是如何正确对齐按钮 2,3,以便所有按钮之间有适当的间距。
我尝试以编程方式进行操作,但我无法移动或设置按钮的确切位置,因为有很多基于像素宽度和 dpi 的逻辑。
有什么简单的出路吗?
最简单的方法是将它们放在 a 中LinearLayout
并给每个layout_width="0dp"
和layout_weight="1"
最简单的方法是使用LinearLayout
带有四个按钮的 a 作为孩子,所有孩子都有一个平等的layout_weight
。
不要忘记将android:layout_width
所有按钮设置为“0dp”。
像这样:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="4">
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="1" />
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="2" />
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="3" />
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="4" />
</LinearLayout>