setTypeface设置字体用法
tv_yellow.setText("yellow"); //设置text
tv_yellow.setTextColor(Color.YELLOW); //设置文本颜色
tv_yellow.setTextSize(29.0f); //设置字体大小
tv_yellow.setTypeface(Typeface.SERIF,Typeface.ITALIC); //设置字体名和类型 比如:宋体并倾斜
tv_yellow.setText("yellow"); //设置text
tv_yellow.setTextColor(Color.YELLOW); //设置文本颜色
tv_yellow.setTextSize(29.0f); //设置字体大小
tv_yellow.setTypeface(Typeface.SERIF,Typeface.ITALIC); //设置字体名和类型 比如:宋体并倾斜