我试图利用ReplacementSpans格式化EditText字段中的输入(不修改内容):
public class SpacerSpan extends ReplacementSpan {
@Override
public int getSize(Paint paint, CharSequence text, int start, int end, Paint.FontMetricsInt fm) {
return (int) paint.measureText(text.subSequence(start,end)+" ");
}
@Override
public void draw(Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, Paint paint) {
canvas.drawText(text.subSequence(start,end)+" ", 0, 2, x, y, paint);
}
}
这可以按预期工作,并在跨区域后添加间距。 但是,如果我还应用ForegroundColorSpan,则不会为跨区域设置颜色:
EditText edit = (EditText) findViewById(R.id.edit_text);
SpannableString content = new SpannableString("1234567890");
ForegroundColorSpan fontColor = new ForegroundColorSpan(Color.GREEN);
SpacerSpan spacer = new SpacerSpan();
content.setSpan(fontColor, 0, content.length(), Spanned.SPAN_INCLUSIVE_INCLUSIVE);
content.setSpan(spacer, 4, 5, Spanned.SPAN_MARK_MARK);
edit.setText(content);
结果看起来像http://i.cubeupload.com/4Us5Zj.png
如果我应用AbsoluteSizeSpan,则指定的字体大小也会应用于“替换范围”部分。这是预期的行为,我错过了什么,或者是android中的错误?
答案 0 :(得分:4)
CommonWare指出了我正确的方向。
在咨询任何ReplacementSpans
之前,似乎CharacterStyleSpan
会呈现[1]
可能(但很难看)修复是实现扩展ForegroundColorSpan
的自定义MetricAffectingSpan
(在绘制ReplacementSpans之前参考MetricAffectingSpans [1])。
public class FontColorSpan extends MetricAffectingSpan {
private int mColor;
public FontColorSpan(int color) {
mColor = color;
}
@Override
public void updateMeasureState(TextPaint textPaint) {
textPaint.setColor(mColor);
}
@Override
public void updateDrawState(TextPaint textPaint) {
textPaint.setColor(mColor);
}
}
我想这是一个应该报告的错误?