以下にレイアウトxmlを示します。
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:stretchColumns="1" >
<TableRow>
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:src="@drawable/no_image" />
<TableLayout
android:layout_width="match_parent"
android:layout_gravity="left"
android:stretchColumns="0" >
<TableRow>
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_weight="1"
android:background="@drawable/backwithborder"
android:ems="5" />
</TableRow>
<TableRow android:layout_height="match_parent" >
<EditText
android:id="@+id/editText1"
android:layout_weight="1"
android:layout_height="35dip"
android:background="@drawable/backwithborder" />
<ImageView
android:layout_width="wrap_content"
android:layout_gravity="right"
android:src="@drawable/ic_menu_down" />
</TableRow>
</TableLayout>
</TableRow>
<View
android:layout_height="2dip"
android:background="@color/list_seperator" />
<TableRow>
<Button
android:id="@+id/xBtnContacts"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Pick Contacts" />
</TableRow>
<View
android:layout_height="2dip"
android:background="@color/list_seperator" />
</TableLayout>