admin
2022-08-09 399ac289f80b7a40aa4210341db6b447cacdcf14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.tejia.lijin.app.util;
 
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.drawable.Drawable;
import androidx.annotation.NonNull;
import android.text.style.ImageSpan;
 
/**
 * Created by weikou2015 on 2017/3/6.
 */
 
public class VerticalImageSpan extends ImageSpan {
 
    private Context mContext;
    private Boolean isShare = false;
 
    public VerticalImageSpan(Context context, final int des) {
        super(context, des);
        this.mContext = context;
    }
 
 
    public VerticalImageSpan(Context context, Bitmap des) {
        super(context, des);
        this.mContext = context;
    }
 
    public VerticalImageSpan(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) {
        // image to draw
        Drawable b = getDrawable();
        // font metrics of text to be replaced
        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();
    }
}