90

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?

Community
  • 1
  • 1
user1293519
  • 1,593
  • 3
  • 16
  • 13

3 Answers3

183

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

Buda Gavril
  • 21,409
  • 40
  • 127
  • 196
99

You can use lineSpacingExtra and lineSpacingMultiplier in your XML file.

android:lineSpacingMultiplier="1.2" 

or a number greater than 1

android:lineSpacingExtra="xxdp"
Pravitha V
  • 3,308
  • 4
  • 33
  • 51
14

You can use this: lineSpacingExtra="xxdp"

Ionică Bizău
  • 109,027
  • 88
  • 289
  • 474