I want to create button where I have icon and text. This is what I created:

This is xml:
<Button android:id="@+id/call_button" android:layout_width="match_parent" android:layout_height="0dp" android:layout_marginTop="30dp" android:background="@drawable/button" android:layout_weight="40" android:drawableLeft="@drawable/phone" android:text="Call" android:textColor="@color/white" />
How I can move this phone icon closer text?
This may guide you for arrangements,
http://developer.android.com/resources/articles/layout-tricks-efficiency.html
Code:
ref from: Android: combining text & image on a Button or ImageButton
Refer here also: http://www.mokasocial.com/2010/04/create-a-button-with-an-image-and-text-android/