okey guys, i've a button like the pict below
i want to change the distance between the text with the drawable . how to trick this one ?
this is my xml code for a button
<Button
android:id="@+id/ButtonCancel"
style="@style/CAGButton"
android:drawableLeft="@drawable/selector_ic_cancel"
android:text="@string/layer_button_cancel" />
and this is the 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. :)