87

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,553
  • 3
  • 15
  • 13

3 Answers3

179

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

Buda Gavril
  • 20,719
  • 39
  • 122
  • 185
98

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,238
  • 4
  • 29
  • 51
14

You can use this: lineSpacingExtra="xxdp"

Ionică Bizău
  • 102,012
  • 80
  • 271
  • 450