作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如上所示,我已将图像插入到 EditText
中,图像前后都有文本。所以,我使用了 ImageSpan
。
我想动态改变背景颜色和文字下划线,但我发现它对图像没有影响。
我应该怎么做才能使 ImageSpan
与近文本显示相同的效果?
最佳答案
我有一个部分解决方案可以提供——用于背景颜色。我发现这样做的唯一方法(除了编写我自己的自定义 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/
我是一名优秀的程序员,十分优秀!