android中使用arial字体TextView textView (TextView) findViewById(R.id.about_us_content)Typeface t
android中使用arial字体
TextView textView = (TextView) findViewById(R.id.about_us_content);Typeface tf = Typeface.createFromAsset(getAssets(), "arial.ttf"); textView.setTypeface(tf);
?
