如何向Android应用程序添加自定义字体?

时间:2015-05-12 13:36:38

标签: java android textview custom-font

如何将自定义字体添加到Android应用程序的<TextView />或自定义视图中?

1 个答案:

答案 0 :(得分:0)

试试这个,

  TextView tx = (TextView)findViewById(R.id.hello);
  Typeface custom_font = Typeface.createFromAsset(getAssets(),
  "fonts/Erika Type.ttf");
  tx.setTypeface(custom_font);