我对android还不熟悉,我正试图在android中开发一个类似word pad的应用程序。
如何在编辑文本中突出显示(应用颜色、更改字体样式、粗体、斜体、下划线等…)所选文本?

最佳答案

Spannable spannable=new SpannableString(string);
spannable.setSpan(new StyleSpan(Typeface.BOLD), start, end, 0);
spannable.setSpan(new StyleSpan(Typeface.ITALIC), start, end, 0);
spannable.setSpan(new UnderlineSpan(), start, end, 0);
spannable.setSpan(new ForegroundColorSpan(Color.BLUE), start, end, 0);
editText.setText(spannable);

关于android - 如何在Android中突出显示EditText的特定单词?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8664121/

10-12 01:44