Skip to content Skip to sidebar Skip to footer

Remove Unwanted Spacing Between Lines In TextView

I have a textview which I use custom font on. The textview is multiline... The problem is that there's big space between each line to the other line. Is there a way to decrease the

Solution 1:

I think you could use a negative value in android:lineSpacingExtra


Solution 2:

Adding a negative value for android:lineSpacingExtra didn't do anything for me.

Instead I just put any value less than 1.0 for android:lineSpacingMultiplier i.e. android:lineSpacingMultiplier="0.7"


Post a Comment for "Remove Unwanted Spacing Between Lines In TextView"