I have some text that have more than one paragraph (using \"\\n\") and want to put a spacing between the paragraphs, but without using \"\\n\\n\". But the text from the same par
No need to manipulate spacing between paragraphs.
FROM_HTML_MODE_LEGACY: Separate block-level elements with blank lines (two newline characters) in between. This is the legacy behavior prior to N.
textView.text = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
Html.fromHtml(html, Html.FROM_HTML_MODE_LEGACY)
} else {
Html.fromHtml(html)
}