当前位置: 代码迷 >> Android >> android中平添arial字体(非android默认字体)
  详细解决方案

android中平添arial字体(非android默认字体)

热度:49   发布时间:2016-05-01 19:53:17.0
android中添加arial字体(非android默认字体)
先在工程中添加字体文件,位置为assets/font/arial.ttf,文件见附件
TextView nameTextView = (TextView) convertView.findViewById(R.id.name);        Typeface tf = Typeface.createFromAsset(context.getAssets(), "font/arial.ttf");         nameTextView.setTypeface(tf);  

  相关解决方案