Android TextView中插入图片不居中的问题
Posted 汤米粥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android TextView中插入图片不居中的问题相关的知识,希望对你有一定的参考价值。
在开发中经常会遇到文字插入小图标,就像下图这种,上榜和预售是两个小图片,然后因为文字需要换行,不能用ImageView+TextView去实现,我们就只能用一个TextView,使用ImageSpan在里面加入图片。
如果用原生的ImageSpan,图片是不能和文字居中的,要么偏上,要么偏下。
这时候使用这个自定义的CenterImageSpan就可以了:
public class CenterImageSpan extends ImageSpan
public CenterImageSpan(@NonNull Drawable drawable)
super(drawable);
@Override
public void draw(@NonNull Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, @NonNull Paint paint)
Drawable b = getDrawable();
Paint.FontMetricsInt fm = paint.getFontMetricsInt();
int transY = (y + fm.descent + y + fm.ascent)/ 2- b.getBounds().bottom/2;
canvas.save();
canvas.translate(x,transY);
b.draw(canvas);
canvas.restore();
以上是关于Android TextView中插入图片不居中的问题的主要内容,如果未能解决你的问题,请参考以下文章
TextView能否实现图片在左边,文字在右边,并且水平居中?
[Android开发]富文本TextView修改部分字体颜色大小加粗斜体下划线删除线,以及添加点击事件,插入本地或网络图片