当前位置: 代码迷 >> Android >> android中运用arial字体
  详细解决方案

android中运用arial字体

热度:40   发布时间:2016-05-01 10:24:12.0
android中使用arial字体

1、将arial.ttf字体文件加入assets目录中

?

2、使用arial.ttf字体方式

?

TextView textView = (TextView) findViewById(R.id.about_us_content);Typeface tf = Typeface.createFromAsset(getAssets(), "arial.ttf"); textView.setTypeface(tf);

?

  相关解决方案