Is it possible to have the followings in android font styling.
Leading (the space vertically between lines of text - name comes from the physical piece of lead that used to be used in mechanical printing process to separate lines of text).
Tracking (the horizontal space between each character).
If you have any ideas please share with me.
For Tracking, check out this answer. It works fine for me.
You can change leading by calling TextView's method
setLineSpacing()
or changing corresponding XML attributes of TextView in layout (android:lineSpacingExtra
orandroid:lineSpacingMultiplier
).As answered here:
Update: since API 21 there is an option to set kerning/tracking/letter spacing. You can call method
setLetterSpacing()
or set it in XML with attribute letterSpacing.