I have a EditText and I want a ImageButton to the left of it. I want my EditText's width to fill_parent except leave room for the ImageButton. Right now the EditText isn't leaving any room. I have them nested in a LinearLayout.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<LinearLayout
android:layout_height="wrap_content"
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:orientation="horizontal"
>
<EditText
android:id="@+id/editText1"
android:layout_marginLeft="10dp"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_width="fill_parent"
/>
<ImageButton
android:id="@+id/imageButton1"
android:layout_height="wrap_content"
android:src="@drawable/icon"
android:layout_width="wrap_content"
/>
</LinearLayout>
...
</LinearLayout>