android将自定义字体设置为油漆
Posted
技术标签:
【中文标题】android将自定义字体设置为油漆【英文标题】:android set custom font to a paint 【发布时间】:2011-08-27 22:19:51 【问题描述】:我想在颜料上画一段文字。如何使用自定义字体(ex Helvetica)和粗体来绘制它?我更喜欢使用系统字体而不是从资产创建它。谢谢。
【问题讨论】:
"paint":你的意思是Canvas
?
是的,我需要油漆来设置一些样式...
如何根据语言环境设置字体,例如英文我们想使用 arial.ttf,韩文我想使用 gothic_B.ttf。在 android 中如何在画布上绘画
@DwivediJi:您是否尝试过将其发布为 *** 问题,而不是对其他人问题的评论?
【参考方案1】:
如果“自定义字体”是指作为资产提供的字体,则以下代码应该可以工作:
Typeface plain = Typeface.createFromAsset(assetManager, pathToFont);
Typeface bold = Typeface.create(plain, Typeface.DEFAULT_BOLD)
Paint paint = new Paint();
paint.setTypeface(bold);
canvas.drawText("Sample text in bold",0,0,paint);
【讨论】:
Helvetica 没有安装,但是我使用了一些安装的字体来比较。如果我使用资产中的字体,你知道如何设置粗体吗? 试试:Typeface plain = Typeface.createFromAsset(assetManager, pathToFont); Typeface bold = Typeface.create(plain, Typeface.DEFAULT_BOLD)
.
@TonythePony 你的代码对我不起作用。字体 fontFace=Typeface.createFromAsset(getAssets(),"fonts/comic.TTF");字体脸 = Typeface.create(fontFace, Typeface.BOLD);油漆油漆 = 新油漆(); paint.setTextAlign(Paint.Align.CENTER); paint.setColor(Color.WHITE);油漆.setTextSize(10);油漆.setTypeface(脸); paint.setFlags(Paint.ANTI_ALIAS_FLAG);
你试过getContext().getAssets()
吗?
Typeface.DEFAULT_BOLD
也给了我问题,但更改为 Typeface.BOLD
有效【参考方案2】:
如果您已经使用了一种字体并且想要使用该字体的粗体版本,您可以这样做。
currentPainter = new Paint(Paint.ANTI_ALIAS_FLAG);
currentPainter.setColor(Color.WHITE);
currentPainter.setTextSize(Utils.sp2px(getResources(), 14)); // set font size
Typeface currentTypeFace = currentPainter.getTypeface();
Typeface bold = Typeface.create(currentTypeFace, Typeface.BOLD);
currentPainter.setTypeface(bold);
我使用了上面的答案,但是这个修改对我来说是必要的 - 所以我想我会提到它
【讨论】:
【参考方案3】:将此用于绘画类:
Paint paint = new Paint();
paint.setTypeface(Typeface.create("Arial",Typeface.ITALIC));
【讨论】:
【参考方案4】:如果你想使用资源中的字体(Kotlin):
val textPaint = TextPaint()
textPaint.typeface = resources.getFont(R.font.font_name)
这可能与问题无关,但这是我正在寻找的 - 也许有人也需要它。
【讨论】:
这是最简单的解决方案,但它仅适用于 SDK 26+。在定位较旧的 Android 版本时,您还可以使用ResourcesCompat.getFont(context, R.font.font_name)
。【参考方案5】:
如果您的字体使用 Android 的新字体 XML,那么要获得用于绘画的字体,您可以使用:
val customTypeface = ResourcesCompat.getFont(context, R.font.myfont)
或者如果您的最小 Android API >= 26
val customTypeface = resources.getFont(R.font.myfont)
然后将其应用于您的绘画对象:
mTextPaint.typeface = customTypeface
欲了解更多信息,请查看https://developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml#fonts-in-code
【讨论】:
这是目前最好的答案,请点赞让其他人先看到。【参考方案6】:使用 FontUtils kotlin 对象
object FontUtils
private const val FONT_PATH_LATO_REGULAR = "lato_regular.ttf"
fun getDefaultTypeface(context: Context): Typeface
return Typeface.createFromAsset(context.assets, FONT_PATH_LATO_REGULAR)
那么您可以将其用作:
paint.typeface = FontUtils.getDefaultTypeface(context)
【讨论】:
【参考方案7】:自定义字体必须放在 assets 文件夹中。
也许下面的代码可以帮到你
Paint p = new Paint();
//Set font
Typeface plain = Typeface.createFromAsset(context.getAssets(), "custom_font.ttf");
p.setTypeface(plain);
【讨论】:
以上是关于android将自定义字体设置为油漆的主要内容,如果未能解决你的问题,请参考以下文章