これは簡単に思えますが、どうすればいいのかわかりません。EditTextと2つのImageButtonを含む水平レイアウトがあります。ImageButtonを固定サイズにし、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>