IconMarginSpan 方法很少,chooseHeight方法有這個作用嗎,怎麼改才能像DynamicDrawableSpan和ImageSpan設定DynamicDrawableSpan#ALIGN_BASELINE這樣後面的文字能換行
public void chooseHeight(CharSequence text, int start, int end,
int istartv, int v,
Paint.FontMetricsInt fm) {
if (end == ((Spanned) text).getSpanEnd(this)) {
int ht = mBitmap.getHeight();
int need = ht - (v + fm.descent - fm.ascent - istartv);
if (need > 0)
fm.descent += need;
need = ht - (v + fm.bottom - fm.top - istartv);
if (need > 0)
fm.bottom += need;
}
}
加個空格。 。 。 。 。 。就行了
加個空格。 。 。 。 。 。就行了