如上图所示,我在 中插入了一张图片EditText
,前后都有文字。所以,我用了一个ImageSpan
.
我希望动态更改背景颜色并为文本加下划线,但我发现它不会对图像产生影响。
我应该怎么做才能使ImageSpan
显示与近文本相同的效果?
我有一个部分解决方案可以提供——用于背景颜色。我发现这样做的唯一方法(除了编写我自己的自定义跨度类)是将可绘制的图像放入您的背景颜色的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);
您可能可以使用相同的技巧来模拟下划线(通过向图层列表添加另一个可绘制对象)。但是,我没有对此进行过实验,也无法提供具体建议。