如何在Android中的spannable字符串之间腾出空间?

时间:2015-10-24 11:38:32

标签: java android android-layout android-activity

代码:

spannable String

上述功能对于创建Border和向其添加public class CustomDrawble extends ReplacementSpan { private int mBackgroundColor; private int mForegroundColor; public CustomDrawble(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) { float padding = 4f; RectF rect = new RectF(x, top + 3, x + measureText(paint, text, start, end) + 10, bottom + 10); paint.setColor(mBackgroundColor); canvas.drawRoundRect(rect, 10,10,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); } } 非常有用。我打电话给下课:

spannable

我从上面得到的结果是:

enter image description here

上述代码的问题是:

  • 如何在两个RectF rect = new RectF(x+10, top + 3, x + measureText(paint, text, start, end) + 10, bottom + 10); 字符串之间添加空格?
  • 如何在矩形的起点和类似于矩形结尾的字符串的第一个字符处添加空格。我尝试通过以下代码添加空格:

    spannable

但它给了我这个扭曲的结果:

enter image description here

如果我没有错,那么上面代码的问题是两个RectF rect = new RectF(x - 5, top + 3, x + measureText(paint, text, start, end)+5, bottom + 10);字符串之间没有足够的空格。

如何使其正确?

修改-1

使用此{{1}}

enter image description here

看看第一个从起点略微切割的。但如果我使用上面的配置,我在两个字符串中没有足够的空间。这是主要问题。

1 个答案:

答案 0 :(得分:1)

rect的末尾删除多余像素将解决跨度之间没有空格的问题

所以从param中移除+ 10以获取正确的

像这样:

RectF rect = new RectF(x, top + 3, x + measureText(paint, text, start, end), bottom + 10);

还要在开始时增加空间,在开始时加上一些负余量 像这样:

 RectF rect = new RectF(x - 5, top + 3, x + measureText(paint, text, start, end), bottom + 10);

下面的图片将直观地解释:

dig