我在字符串中设置背景:
spanString.setSpan(new BackgroundColorSpan(color), 0, 3, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
但是我想在此背景中增加左右填充,因此我创建了自定义范围
public class PaddingBackgroundSpan extends ReplacementSpan {
private int mBackgroundColor;
private int mForegroundColor;
public PaddingBackgroundSpan(int backgroundColor, int foregroundColor) {
this.mBackgroundColor = backgroundColor;
this.mForegroundColor = foregroundColor;
}
@Override
public int getSize(Paint paint, CharSequence text, int start, int end, Paint.FontMetricsInt fm) {
return Math.round(measureText(paint, text, start, end));
}
@Override
public void draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) {
RectF rect = new RectF(x, top, x + measureText(paint, text, start, end), bottom);
paint.setColor(mBackgroundColor);
canvas.drawRect(rect, paint);
paint.setColor(mForegroundColor);
canvas.drawText(text, start, end, x, y, paint);
}
private float measureText(Paint paint, CharSequence text, int start, int end) {
return paint.measureText(text, start, end);
}
我使用我的跨度:
spanString.setSpan(new PaddingBackgroundSpan(color1, color2), 0, 3, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
不幸的是,我没有调用draw()方法。正确调用getSize()。
答案 0 :(得分:19)
如果有人遇到这个问题,我就遇到了。我要做的是将第二个参数传递给setText()方法。我的电话看起来像是
textView.setText(spanned, TextView.BufferType.SPANNABLE);
希望这有帮助!
答案 1 :(得分:4)
看起来我找到了一个解决这个问题的工作(但很糟糕)的解决方案。尝试在字符串的末尾添加另一个符号,使其不包含在范围内 - 然后调用draw()
!
char EXTRA_SPACE = ' ';
String text = originalString + EXTRA_SPACE;
Spannable spannable = new SpannableString(text);
spannable.setSpan(new MyReplacementSpan(), 0, text.length()-1, Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
textView.setText(spannable);
看起来它忽略了整个字符串范围的跨度。
答案 2 :(得分:4)
在方法getSize()
中,必须根据Paint.FontMetricsInt fm
FontMetricsInt重新计算paint
:
@Override
public int getSize(Paint paint, CharSequence text, int start, int end, Paint.FontMetricsInt fm) {
width = Math.round(paint.measureText(text, start, end));
Paint.FontMetricsInt metrics = paint.getFontMetricsInt();
if (fm != null) {
fm.top = metrics.top;
fm.ascent = metrics.ascent;
fm.descent = metrics.descent;
fm.bottom = metrics.bottom;
}
return width;
}
答案 3 :(得分:0)
调用该视图的invalidate()
方法,以强制调用draw()
。
答案 4 :(得分:0)
我认为这会对你有所帮助。设置textView宽度匹配父级。 main_activity.xml
<TextView
android:width="match_parent"
答案 5 :(得分:0)
ReplacementSpan.getSize()的文档提供了答案:
返回跨度的宽度。扩展类可以通过更新Paint.FontMetricsInt的属性来设置跨度的高度。 如果跨度覆盖了整个文本,并且未设置高度,则不会为该跨度调用draw()。
请确保使用适当的值更新Paint.FontMetricsInt
,以解决问题。
就我而言,我只是从TextView
的{{1}}中获取了指标:
Paint