将矢量化符号放在按钮上的最佳方法是什么? Wingdings按钮标题

时间:2012-05-17 12:15:47

标签: android button icons vector-graphics wingdings

假设我想在按钮表面上绘制简单的图标。让它成为十字架或一些字母。

最好的方法是什么?我可以在按钮上使用wingdings或webdings字体吗?

1 个答案:

答案 0 :(得分: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" />

另见: