I need a button with text in the middle and an icon to the left of the text.
my button:
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:onClick=""
android:text="@string/search_button"
android:textColor="@drawable/button_text"
android:layout_weight="1"
android:background="@drawable/button"
android:drawableLeft="@drawable/new_star_nonactive" />
I need a button with fill_parent width (full screen width)
but I have this:

How to set the center of image positioning next to the text?
source
share