如何用两个按钮划分屏幕?

时间:2012-10-04 04:42:49

标签: xml android-layout

如何使用match_parent将屏幕宽度与两个按钮分开。我将match_parent给一个按钮然后它填满了屏幕。我想要两个按钮水平填充屏幕。

1 个答案:

答案 0 :(得分:4)

您需要使用WEIGHT来划分宽度,而不是通过换行内容/匹配父级等...

所以首先采用线性布局将宽度设为fill_parent,现在将weighSum属性添加为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>