how to divide the screen,s width with two buttons using match_parent. I give match_parent to a button then it fills the screen. I want two buttons to fill the screen horizontally.
问问题
1110 次
1 回答
4
您需要使用 WEIGHT 来划分宽度,而不是通过包装内容/匹配父级等...
因此,首先采用线性布局,将宽度作为填充父项,现在将 weightSum 属性添加为 2。
现在添加 2 个 layout_width = 0dp 的按钮
并在两个按钮中添加 layout_weight = 1 ....
完整的代码在这里:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:weightSum="2" >
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Aamir Shah" />
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Aamir Shah" />
</LinearLayout>
于 2012-10-04T05:22:48.277 回答