EditText和按钮布局

时间:2011-10-19 15:02:31

标签: android-layout

我希望有一个EditText(尽可能宽)和旁边的按钮。 EditText(fill_parent - 按钮宽度)+ Button(wrap_content)= All(fill_parent)

我该怎么做....

1 个答案:

答案 0 :(得分:0)

<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content">
    <EditText android:layout_width="0dip" android:layout_height="wrap_content"
        android:layout_weight="1.0"/>
    <Button android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:text="Button"/>
</LinearLayout>

这应该有用。