Please look at the screenshot below.

I am trying to remove the white space just below the EditText. There isn’t any margin or padding being set which in turn confuses me. Here is the layout XML.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<EditText
android:id="@+id/searchText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:drawableLeft="@drawable/search_icon"
android:ems="10"
android:hint="@string/text_hint_search"
android:imeOptions="actionSearch"
android:inputType="text"
android:lines="1"
android:windowSoftInputMode="stateVisible" >
</EditText>
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/searchText"
android:background="@color/textGreyColor"
android:text="List of Items"
android:textAppearance="?android:attr/textAppearanceMedium" />
</RelativeLayout>
Could anyone guide me where I am falling over?
EDIT: (NEW SCREENSHOT)

@Nimish Choudhary See the gaps on left and right!
The reason for such behavior is that there are some default padding for each view, you can try