2011-10-19 108 views
0

我想要一個EditText(儘可能寬)和一個按鈕旁邊的按鈕。 的EditText(FILL_PARENT - 按鍵寬度)+按鈕(WRAP_CONTENT)=所有(FILL_PARENT)EditText和按鈕佈局

我如何做到這一點....

回答

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> 

這應該工作。

+0

That worked !!!!!!!!!!!!!!!! – user533844

+0

很好地設置答案和upvote。謝謝 – blessenm