Guys, I have a button, as in the picture below 
I want to change the distance between text using drawable. how to fool it?
this is my xml for the button
<Button android:id="@+id/ButtonCancel" style="@style/CAGButton" android:drawableLeft="@drawable/selector_ic_cancel" android:text="@string/layer_button_cancel" />
and this is CAGButton in style.xml
<style name="CAGButton" parent="@android:style/Widget.Button"> <item name="android:drawablePadding">3dip</item> <item name="android:textColor">@color/cag_brown</item> <item name="android:layout_width">0dp</item> <item name="android:layout_height">wrap_content</item> <item name="android:layout_weight">1</item> <item name="android:background">@drawable/selector_button"</item> </style>
okey, thanks in adv. :)
source share