我有一个带有图像的按钮和左边的文本。当我正常应用它们时,图像和文本之间没有空格,但是当我将背景设置为透明时,图像和文本之间会出现一个小的间隙。像这样
http://postimg.org/image/hyhzhcyrx/cdcbe297/
并且透明背景看起来像
http://postimg.org/image/tf9joeuxn/077f7816/
我想设置透明背景,但我不想要图像和文本之间的空间?怎么做?我的按钮代码是:
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="1"
android:textSize="20sp"
android:textStyle="bold"
android:drawableLeft="@drawable/tick3"
/>
答案 0 :(得分:1)
您需要将 android:drawablePadding 设置为否定以删除图像和文本之间的空间
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="1"
android:textSize="20sp"
android:textStyle="bold"
android:drawablePadding="-5sp"
android:drawableLeft="@drawable/tick3"
/>