读书人

android中平添arial字体(非android默

发布时间: 2012-07-05 07:59:18 作者: rapoo

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

读书人网 >Android

热点推荐