Android TextView padding between lines

android, textview

Solution

You can use `lineSpacingExtra` and `lineSpacingMultiplier` in your XML file.

Problem

I have a TextView which displays a long text. I want to give some space between lines like in CSS with line-height property. How can I do it?

Original source