I have search bar that defines EditBox like
<EditText
android:id="@+id/search_editbox"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerVertical="true"
android:layout_toLeftOf="@id/search_execute_imageview"
android:layout_toRightOf="@id/layout_back_logo"
android:gravity="left"
android:hint="@string/search_hint"
android:maxLength="20"
android:textCursorDrawable="@null"
android:drawableRight="@drawable/abc_ic_clear_holo_light"
android:background="@drawable/rounded_edittext_states"
android:padding="5dip"
android:singleLine="true"
android:textSize="@dimen/main_text_size" />
Despite android:layout_centerVertical="true"
the text is not in the middle, but closer to upper side.
Use
android:gravity="left|center_vertical"