I have a TextView
which makes use of the android:lineSpacingMultiplier
attribute to increase the spacing between lines, which works fine except for when I add an ImageSpan
to the text.
This causes the image to be aligned to the bottom of the space between lines, not the baseline of the text (as is specified when I create it).
I tried using the android:lineSpacingExtra
attribute, with some success, the image was still positioned lower than it should be, but not as much. Is there an alternate way of increasing the space between lines without messing up the vertical alignment of the ImageSpan
?