如何在TextView中动态更改字体样式?

时间:2011-08-12 05:21:28

标签: android text

我是android新手,请帮帮我

在我的应用程序中我想在图像上输入文本,我想动态地更改文本字体在TextView中的操作方式,

请提出建议。

1 个答案:

答案 0 :(得分:3)

试试这个,

  Typeface tf = Typeface.createFromAsset(getAssets(),
        "fonts/Arial.otf");
    TextView tv = (TextView) findViewById(R.id.CustomFontText);
    tv.setTypeface(tf)