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);

相关推荐