Das scheint unkompliziert zu sein, aber ich kann nicht herausfinden, wie es geht. Ich habe ein horizontales Layout mit einem EditText und zwei ImageButtons. Ich möchte, dass die ImageButtons eine feste Größe haben und der EditText den verbleibenden Platz im Layout einnimmt. Wie kann dies erreicht werden?
<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>