ดูเหมือนจะตรงไปตรงมา แต่ฉันคิดไม่ออกว่าจะทำอย่างไร ฉันมีเค้าโครงแนวนอนพร้อมด้วย EditText และ ImageButtons สองปุ่ม ฉันต้องการให้ ImageButtons มีขนาดคงที่และ EditText เพื่อใช้พื้นที่ที่เหลือในเค้าโครง จะสำเร็จได้อย่างไร?
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</EditText>
<ImageButton
android:src="@drawable/img1"
android:layout_width="50dip"
android:layout_height="50dip">
</ImageButton>
<ImageButton
android:src="@drawable/img2"
android:layout_width="50dip"
android:layout_height="50dip">
</ImageButton>
</LinearLayout>