android-如何限制spannablestring的行高,但保持其余行
作者:互联网
我有一个TextView,里面有SpannableString以突出显示搜索到的术语.像这样:
<TextView android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/textBox"
android:textSize="16sp"
android:paddingTop="10dp"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:lineSpacingExtra="5dp"
android:textColor="@color/TextGray"/>
可以看出,我使用android:lineSpacingExtra给行提供了一个不错的间距,但是这导致SpannableString背景太高.我想保持行之间的间距,但使SpannableString较短.
这怎么可能?
解决方法:
您可以通过扩展ReplacementSpan来创建自己的跨度.在draw方法中,可以考虑从Paint参数获取的fontSpacing.
像这样:
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Paint.FontMetricsInt;
import android.graphics.RectF;
import android.text.style.ReplacementSpan;
public class BetterHighlightSpan extends ReplacementSpan {
private int backgroundColor;
public BetterHighlightSpan(int backgroundColor) {
super();
this.backgroundColor = backgroundColor;
}
@Override
public int getSize(Paint paint, CharSequence text, int start, int end, FontMetricsInt fm) {
return Math.round(paint.measureText(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) {
// save current color
int oldColor = paint.getColor();
// calculate new bottom position considering the fontSpacing
float fontSpacing = paint.getFontSpacing();
float newBottom = bottom - fontSpacing;
// change color and draw background highlight
RectF rect = new RectF(x, top, x + paint.measureText(text, start, end), newBottom);
paint.setColor(backgroundColor);
canvas.drawRect(rect, paint);
// revert color and draw text
paint.setColor(oldColor);
canvas.drawText(text, start, end, x, y, paint);
}
}
您可以像这样使用它:
TextView textView = (TextView) findViewById(R.id.textView);
SpannableStringBuilder builder = new SpannableStringBuilder("here some text and more of it");
builder.setSpan(new BetterHighlightSpan(Color.CYAN), 4, 8, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
textView.setText(builder);
我无法对其进行太多测试,但是您可以对其进行改进.
标签:highlight,spannablestring,formatting,android,textview 来源: https://codeday.me/bug/20191030/1965361.html