以编程方式:运行时您可以使用setTypeface()以编程方式进行操作:textView.setTypeface(null, Typeface.NORMAL); // for Normal TexttextView.setTypeface(null, Typeface.BOLD); // for Bold onlytextView.setTypeface(null, Typeface.ITALIC); // for ItalictextView.setTypeface(null, Typeface.BOLD_ITALIC); // for Bold and ItalicXML:设计时间您还可以设置XML:android:textStyle="normal"android:textStyle="normal|bold"android:textStyle="normal|italic"android:textStyle="bold"android:textStyle="bold|italic"希望这会有所帮助总结