在 Button 上添加 image 时,如何不使 image 紧靠在 Button 左边

给 Button 上添加 image 的时候如何在 image 的左边加空间,使得 image 左边不会紧靠在Button 的左边。
我使用的下面的代码,效果图是这样的:
CSDN移动问答

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="45dp"   
    android:orientation="horizontal" >

           <Button   android:id="@+id/MyAccountbutton"
             style="?android:attr/buttonStyleSmall"
             android:layout_height="25dip"
                android:layout_width="fill_parent"
                android:layout_marginRight="35dip"
                android:layout_marginLeft="35dip"
            android:drawableLeft="@drawable/Handshake"
            android:background="@drawable/curvedplanebutton"
            android:textColor="@drawable/button_text_color"
            android:layout_marginTop="15dip"
            android:text="Payments"/>
           </LinearLayout>

我想实现的是这样的效果:
CSDN移动问答

就是让 Button 上的 image 不要紧靠在 Button 的左边,留点空间。如何实现呢?

可以加drawablePadding属性

但这样drawable的四边都会出现相同的间距,代码中不知道可不可以只设置左边的padding

最好的方法是:不要在button上加drawable,而是在你的linearLayout里面再加一个

将图片单独放,这样就很好调整了,想怎么调就怎么调

添加 android:drawablePadding,然后图像就会有空间。
修改 button 代码:

<Button   android:id="@+id/MyAccountbutton"
             style="?android:attr/buttonStyleSmall"
             android:layout_height="25dip"
                android:layout_width="fill_parent"
                android:layout_marginRight="35dip"
                android:layout_marginLeft="35dip"
                android:drawableLeft="@drawable/Handshake"
             android:drawablePadding="5dp"
            android:background="@drawable/curvedplanebutton"
            android:textColor="@drawable/button_text_color"
            android:layout_marginTop="15dip"
            android:text="Payments"/>

给 button 添加 android:drawablePadding="16dip"android:paddingLeft="16dip"