How to increase the spacing between lines in a textview.? [duplicate]

Possible Duplicate:
Is it possible to style the android fonts styles with leading and tracking?

How to increase the spacing between lines in a textview in android?


from code you can use textView.setLineSpacing() or from xml you can use android:lineSpacingExtra


You can use lineSpacingExtra and lineSpacingMultiplier in your XML file.

android:lineSpacingMultiplier="1.2" 

or a number greater than 1

android:lineSpacingExtra="xxdp"