Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何java代码在编辑文本而不是文本视图中实现样式(即粗斜体等)。
EditText 继承自 TextView
editText.setTypeface(null, Typeface.BOLD_ITALIC); editText.setTypeface(null, Typeface.BOLD); editText.setTypeface(null, Typeface.ITALIC);
使用你想要的。