如上图所示,我已将图像插入EditText,前后都有文本。所以,我使用了ImageSpan
我想动态地改变背景颜色和文本下划线,但我发现它对图像没有影响。
如何使ImageSpan显示与near text相同的效果?

最佳答案

我有一个部分的解决方案提供背景色。我找到的唯一方法(除了编写自己的自定义span类)是将可绘制的图像放到LayerList顶部的GradientDrawable中,这是您的背景色。在代码中,可能是这样的:

// Assume that d is the image drawable and bgSpan is the background color span.
// Then instead of doing
//      ImageSpan imgSpan = new ImageSpan(d, ImageSpan.ALIGN_BASELINE);
// you do the following:

GradientDrawable gd = new GradientDrawable();
gd.setShape(GradientDrawable.RECTANGLE);
gd.setColor(bgSpan.getBackgroundColor());
LayerDrawable ld = new LayerDrawable(new Drawable[] {gd, d});
ld.setBounds(d.getBounds());
ImageSpan imgSpan = new ImageSpan(ld, ImageSpan.ALIGN_BASELINE);

您可能可以使用相同的技巧来模拟下划线(通过将另一个可绘制的添加到层列表)。不过,我还没有尝试过,也不能给出具体的建议。

关于java - 如何设置ImageSpan的背景颜色和下划线,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16582806/

10-09 03:46