标签: android android-edittext
是否有任何java代码在编辑文本中实现样式(即粗体斜体等)而不是文本视图..
答案 0 :(得分:0)
EditText继承自TextView
editText.setTypeface(null, Typeface.BOLD_ITALIC); editText.setTypeface(null, Typeface.BOLD); editText.setTypeface(null, Typeface.ITALIC);
使用你想要的东西。