使用自定义字体的自定义文本视图

发布于 2024-10-13 07:47:07 字数 413 浏览 3 评论 0原文

我正在尝试实现一个使用我自己的自定义字体的自定义文本视图。

有没有办法在执行 Super.onDraw() 之前设置字体?

从而将常用字体替换为我想要使用的自定义字体。

比如:

protected void onDraw(Canvas canvas)
{
    Typeface font1 = Typeface.createFromAsset(context.getAssets(), "fonts/myfonts.ttf");
    this.setTypeface(font1);
    this.setTextSize(18);
    super.onDraw(canvas);
}

我知道上面的代码行不通。

或者我别无选择,只能使用drawText()来这样做?

I'm trying to implement a custom textview that uses my own custom font.

is there a way to set the typeface before doing a Super.onDraw()?

So as to replace the usual font to the custom font that I want to use.

Something like:

protected void onDraw(Canvas canvas)
{
    Typeface font1 = Typeface.createFromAsset(context.getAssets(), "fonts/myfonts.ttf");
    this.setTypeface(font1);
    this.setTextSize(18);
    super.onDraw(canvas);
}

I know the above code won't work.

Or do I have no choice but to use drawText() to do so?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

寻找我们的幸福 2024-10-20 07:47:08

哦,我的糟糕,它确实改变了字体。

只是它没有显示在 Eclipse 的预览中,但它确实显示在模拟器上。

问题解决了。

Oh my bad, it actually does change the font.

Just that it didn't show up on the preview on Eclipse but it does show on the emulator.

Problem solved.

本宫微胖 2024-10-20 07:47:08
public class CustomTextView extends TextView {

 public CustomTextView(Context context, AttributeSet attributes) {
  super(context, attributes);
  applyCustomFont(context);
 }

 private void applyCustomFont(Context context) {
  TypeFace customTypeFace = Typeface.createFromAsset(context.getAssets(), "custom_font_name");
  setTypeface(customTypeFace);
 }

 @Override
 public void setTextAppearance(Context context, int resid) {
  super.setTextAppearance(context, resid);
  applyCustomFont(context);
 }
}

该代码片段创建一个自定义 TextView ,并在创建文本视图期间设置自定义字体。
当您尝试以编程方式设置文本外观时,自定义字体将被重置。因此,您可以重写 setTextAppearance 方法并再次设置自定义字体。

public class CustomTextView extends TextView {

 public CustomTextView(Context context, AttributeSet attributes) {
  super(context, attributes);
  applyCustomFont(context);
 }

 private void applyCustomFont(Context context) {
  TypeFace customTypeFace = Typeface.createFromAsset(context.getAssets(), "custom_font_name");
  setTypeface(customTypeFace);
 }

 @Override
 public void setTextAppearance(Context context, int resid) {
  super.setTextAppearance(context, resid);
  applyCustomFont(context);
 }
}

The code snippet creates a custom TextView and during the creation of the textview it set the custom font.
When you try to programmatically set the text appearance, the custom font is reset. Hence you can override the setTextAppearance method and set the custom font again.

叹梦 2024-10-20 07:47:07

每次调用 onDraw 方法时都创建新的 Typeface 对象是非常糟糕的做法。诸如字体设置之类的事情应该在类构造函数中完成,而不是在每次绘制视图时完成。

It's a very bad practice to create new Typeface object on every time when your onDraw method is called. Such things as font set up should be done in the class constructor but not on every time your view is being drawn.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文