0

Suppose I want to draw simple icon on the button surface. Let it be the cross or some letter.

What is the best way to do this? Can I use wingdings or webdings font on button?

4

1 回答 1

0

由于 Android 使用 Unicode (utf-8),您可以使用此处定义的任何符号,只要您的字体支持。只需使用复制和粘贴。我认为更好的解决方案是使用 ImageButton 使用您的 drawables 文件夹中的图像。这个文件夹可以在project/res/drawables或通过 Ecplipse Package-Explorer 找到,你应该使用它来复制和粘贴你的文件(支持 png、gif 和 jpg)

在 XML 布局文件中,图像通过以下方式分配给 ImageButton

<ImageButton
    android:id="@+id/imageButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_launcher" />

也可以看看:

于 2012-05-17T12:38:24.350 回答