我正在制作一个代码编辑器,如果用户在他编写的代码中出错,我正在尝试动态添加红色波浪下划线。我尝试使用underlineSpan,但我不知道如何使它呈波浪状。使用 .setColor() 更改颜色似乎也不起作用。有没有可以帮助我的Span,或者有没有办法用Paint来实现?
问问题
1008 次
1 回答
0
您可以使用TextPaint。
TextPaint tp = new TextPaint();
tp.linkColor = Color.BLACK; //you can use your color using Color.parseColor("#123456");
UnderlineSpan us = new UnderlineSpan();
us.updateDrawState(tp);
SpannableString sp = new SpannableString("Welcome to android");
sp.setSpan(us, 11, 18, 0); // UnderlineSpan Object, Start position, End position, Flag.
et.setText(sp);
这对我有用。我希望这能帮到您。
于 2013-05-28T05:57:43.547 回答