Android:添加字体..例如。 Roboto始终贯穿整个应用程序

时间:2012-09-25 11:56:39

标签: android typeface

  

可能重复:
  Android: Want to set custom fonts for whole application not runtime

我可以通过一个简单的代码将字体添加到我的应用程序中:

TextView txt = (TextView) findViewById(R.id.myText);
Typeface font = Typeface.createFromAsset(getAssets(),
        "Americana Dreams Upright Bold.ttf");
txt.setTypeface(font);

但是,如果我想在整个应用程序中添加此字体,我必须为每个必须使用的文本添加它。 是否有一种更简单的方法可以在整个应用程序中一致地使用字体。

我的XML可以显示我手动指定的字体类型(字体)吗? 默认字体为:Normal,Sans,Serif,Monospace。 如果有办法添加字体,请告诉我。

0 个答案:

没有答案