我希望有一个EditText(尽可能宽)和旁边的按钮。 EditText(fill_parent - 按钮宽度)+ Button(wrap_content)= All(fill_parent)
我该怎么做....
答案 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>
这应该有用。